网页无法打开,弹出ajaxform需要jquery插件才能运行禁止此页再显示对话框确定,该怎么弄
1,在表单subimt事件里用ajax提交表单内容,然后return false;阻止自动表单形式提交
2,把sumbit提交按钮改成button,用button按钮的click事件触发ajax提交表单
剩下的就是ajax的事情了
$.ajax({
url:'服务器地址',
data:'表单数据(可用serialize序列化表单数据)',
type:'post',
dataType:'json',
success:function(data){
//dosomething 根据服务器后台返回的内容 提示相应的信息
}
})
jquery中的submit方法怎么用
submit()方法绑定在form表单元素上,当绑定的表单被提交时(通过点击按钮、按回车键等),会触发该方法。实例:
<form id="form1" autocomplete="off"> <input type="text" name="model.username"/> <input type="password" name="model.password"/> <input type="submit" value="登录" /> </form>
$('#form1').submit(function() { $.ajax({ url: '/index!login.do', data: $('#form1').serialize(), type: "POST", dataType: "json", cache: false, success: function(data) { if (data.login == true || data.login == "true") { // 登录成功 location.replace('/main/index.do'); } else { alert('登录失败!请检查用户名或密码'); } } });});
jquery.form提交后如何获取数据
$("button").click(function(){ alert($(this).serialize());});//或者$('form').submit(function() { alert($(this).serialize()); return false;});
serialize() 方法通过序列化表单值,创建 URL 编码文本字符串

