我正在尝试使用jquery AJAX获取已发布文本框的值:
这是我的代码:
$(document).ready(function(){
$('#submitButton').click(function() {
$.ajax({
type: "POST",
url: "test.asp",
data: $("#form1").serialize(),
cache: false,
dataType: "html",
success: function(responseText){
alert(responseText);
},
error: function(resposeText){
alert(resposeText);
},
});
return false;
});
});
这是 test.asp 页面:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
dim vwPW
vwPW = request.QueryString("vwPW")
response.write "returned " & vwPW
%>
我的表格是:
<form id="form1" method="post" action="">
<table width="100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input name="vwPW" id="vwPW" type="password" class="textBox" maxlength="10" /></td>
<td><button class="GreyB" id="submitButton" name="submitButton"><span style="color:#000">Log in</span></button></td>
</tr>
</table>
</form>
我所得到的只是“重新调整”,之后什么都没有。我做错了什么?
大卫
答案 0 :(得分:6)
您的ajax正在使用POST
,ASP需要使用request.form
代替request.querystring
获取值 - 或者,将您的ajax更改为GET
。
答案 1 :(得分:2)
您的表单正在发布,因此您无法访问通过Request.QueryString
发送的变量,而是通过Request.Form
。或者,将您的ajax调用更改为type:'get'
。