$.get和$.post方法一样,第一个参数是地址,第二个是传的值,第三个是成功后的回调函数
post方法:
代码如下 | 复制代码 |
function emailb(){ var email = $("#email").val(); if(email==""){ $("#inf_email").replaceWith('<span id="inf_email"><img src="/public/img/check_false.gif"> <font color="red">Email地址不能为空</font></span>'); } else{ $.post("/index.php/Index/checkEmail2",{"email":email,"randnum":Math.random()+''},function (res){ |
get方法:
代码如下 | 复制代码 |
var p = new prompts(); $('#username').blur(function(){ var username = $('#username').val(); //获取表单值 if(username == ''){ p.p('#user_prompt','p1','p2 p3','大小写英文字母、汉字、数字、下划线组成的长度 3-12 个字节以 内'); c_user = ''; == 'yes'){ |
ajax方法
代码如下 | 复制代码 |
<form action="/loupan/newask.php" method="post" id="submitform" name="submitform" ><tr> <td><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="6%">手机:</td> <td width="21%"><input name="mo" type="text" class="inp" id="mo" size="17" /></td> /></td> </span></td> /> </span></td> $('#buttonajax').click(function(){ |