使用jQuery $ .get ajax方法从asp页面检索数据

时间:2013-01-18 03:13:13

标签: jquery ajax asp-classic get

jQuery的$.get方法应该是一种检索由运行jscript的.asp页面生成的数据的简单方法,但到目前为止我还没能使它工作。

jQuery文档中的模型示例是

$.get("test.php", function(data){
    alert("Data Loaded: " + data);
});

但是当我尝试使用asp页面而不是.php函数时,我无处可去。 我的asp页面:

<% response.write "Hello World" %> 

我的html页面,除了header和src refs to jQuery之外,只是

$.get("test.asp", function(data){
    alert("Data Loaded: " + data);
});

加载页面会产生一个空白页面。 有没有理由不这样做,或者我错误地设置了它?

0 个答案:

没有答案