- 分享
- 0
- 人气
- 0
- 主题
- 26
- 帖子
- 1218
- UID
- 44652
- 积分
- 192
- 阅读权限
- 13
- 注册时间
- 2006-9-19
- 最后登录
- 2015-8-3
- 在线时间
- 692 小时
|
function pageLoad()
{
$("#<%=txt_UserId.ClientID %>").change
(
function()
{
alertRegUserIDMsg = "";
$.ajax
({
type: "Post",
url: "../Ajax/RegAjaxValidation.aspx",
data: "Action= ValidReg®UserID=" + $("#<%=txt_UserId.ClientID %>").val(),
complete: function(result)
{
if (result.responseText == "False")
{
alert("False");
alertRegUserIDMsg += "<img src='../Icon/Warning.gif' style='width: 40px; height:40px'align='absmiddle' /> <b>These name has been use!</b><br/>";
validRegUserID = false;
}
else (result.responseText == "True")
{
alert("True");
validRegUserID = true;
}
},
dataType: "html"
});
}
)
}
我用alert来尝试有没有跑程序。。。
然后发现。。。
为什么进了if的false ...然后又进 else的true...?? |
|