求大神给解释下面脚本语句的意思。
没学过js看不懂阿,求大神给解释一下。<script type="text/javascript">
function test() {
if ($('#txtuid').val() == "") {
jAlert("warning", "请填写用户名", "系统提示");
}else if ($('#txtpwd').val() == "") {
jAlert("warning", "请填写密码", "系统提示");
} else {
$.post("AdminLogin.aspx", { "para": "1", "LoginName": $('#txtuid').val(), "Pwd": $('#txtpwd').val() }, function (result) {
if (result == "0") {
jAlert("warning", "请填写完整的登录信息", "系统提示");
} else if (result == "-1") {
jAlert("warning", "请填写正确的用户名和密码", "系统提示");
} else {
window.top.location.href = "Main.aspx";
}
});
}
}
</script>