我正在使用 ajax 调用网络服务。servcie 接受 2 个参数并以 JSON 格式返回数据。
但是当我调用 webservice 时,它不会被调用。警报抛出异常 UNDEFINED
我不知道为什么会这样。整个html代码如下。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Decision Maker</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#SayHello").click(function (e) {
$.ajax({
type: "POST",
data: "{'userName':'5021','Password':'35A3C84D'}",
url: "http://www.iclinic247.com/authenticateusers.asmx/LoggedUserAuthentication",
contentType: 'application/json; charset=utf-8',
dataType: "json",
success:
function (data) {
alert('Success');
alert(data);
},
error:
function (XMLHttpRequest, textStatus, errorThrown) {
alert('Fail');
alert(errorThrown);
}
});
});
});
</script>
</head>
<body>
<input id="name" /><a id="SayHello" href="#">Greetings!</a>
</body>
</html>
谁能告诉我是什么问题