28,406
社区成员
发帖
与我相关
我的任务
分享
<html>
<head>
<script src="jquery/jquery-1.3.2.js"></script>
</head>
<body>
<script type="text/javascript">
function do_jsonp() {
$.getJSON("http://192.168.0.101/jsonp/server.asp?callback=?",
function(data) {
$('#result').val('My name is: ' + data.name);
});
}
</script>
<a href="javascript:do_jsonp();">Click me</a><br />
<textarea id="result" cols="50" rows="3"></textarea>
</body>
</html>
response.Charset = "gb2312"
Dim strTest
strTest = "{name:""alonely"", age:24, email:[""ycplxl1314@163.com"",""ycplxl1314@gmail.com""], family:{parents:[""父亲"",""母亲""],toString:function(){return ""家庭成员"";}}}"
response.Write(strTest)

<html>
<head>
<script src="jquery/jquery-1.3.2.js"></script>
</head>
<body>
<script type="text/javascript">
function do_jsonp() {
$.getJSON("http://192.168.0.101/jsonp/server.asp?callback=?",
function(data) {
$('#result').val('My name is: ' + data.name);
});
}
function xxx(data){
$('#result').val('My name is: ' + data.name);
}
</script>
<a href="javascript:do_jsonp();">Click me</a><br />
<textarea id="result" cols="50" rows="3"></textarea>
</body>
</html>
response.Charset = "gb2312"
Dim strTest
strTest = "xxx{name:""alonely"", age:24, email:[""ycplxl1314@163.com"",""ycplxl1314@gmail.com""], family:{parents:[""父亲"",""母亲""],toString:function(){return ""家庭成员"";}}})"
response.Write(strTest)