注册没反映
<script type ="text/javascript" >
$(function (){
$("#Button1").click(function (){
$.ajax({
type: "POST",
url:"Handler.ashx?txt="+$("#Text1").val(),
data:"{}",
dataType:'html',
success:function(result){ if(result =="成功")
window .location ="首页.aspx";
else
window .location ="注册.aspx";
}
});
});
});
</script>
这页面有1个按钮,点击按钮,为什么会没有反映的。
$(function (){
$("#Button1").click(function (){
$.ajax({
type: "POST",
url:"Handler.ashx?txt="+$("#Text1").val(),
data:"{}",
dataType:'html',
success:function(result){ if(result =="成功")
window .location ="首页.aspx";
else
window .location ="注册.aspx";
}
});
});
});
</script>