Ste*_*hRT 2 ajax jquery post asp-classic
我试图使用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;
});
});
Run Code Online (Sandbox Code Playgroud)
这是test.asp页面:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
dim vwPW
vwPW = request.QueryString("vwPW")
response.write "returned " & vwPW
%>
Run Code Online (Sandbox Code Playgroud)
我的表格是:
<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>
Run Code Online (Sandbox Code Playgroud)
我得到的只是"重新调整",之后什么都没有.我做错了什么?
大卫