我正在尝试getNewFollowing.pl
从 jquery 运行脚本,这是代码:
$(document).ready(function(){
$("#cross").livequery("click", function(e){
e.preventDefault();
$.post("getNewFollowing.pl,
function(data){
$('#follow_name1').text(data.userName);
$('#follow_email1').text(data.userEmail);
});
});
});
当我单击带有 的链接时ID="cross"
,它应该调用一个返回 userName 和 userEmail 的 perl 文件。
此代码不调用 perl 脚本。我究竟做错了什么?