我正在尝试调用具有来自 JavaScript 的 Json 输出的 Web 服务。但我无法获得价值。我尝试了不同的方法,但都没有成功。请帮忙 !!
这是我尝试过的代码
<script src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
function callajax(){
var html =$.ajax({
cache: false,
type: "GET",
async: false,`enter code here`
data: {},
url: "http://domain/abc.php?param=abcd',
contentType: "application/json; charset=utf-8",
dataType: "json",
crossDomain: true,
Success: SucceedFunc,`enter code here`
error: function (request, errorText, errorCode)
{
alert(errorText+"--"+errorCode);
}
});
}
function SucceedFunc(data, status)
{
alert("Enter into Success");
alert(data);
}
所需的输出是 {"name":Alex,"Success":true} 格式。我需要为“名称”选择值。
帮助将不胜感激。