我正在尝试利用 JQuery Ajax 调用 javascript 文件。我需要传递一些参数,但我不确定在使用 javascript 时如何传递(PHP 似乎更简单)。这是我的电话:
function getDocument(parameters) {
$.ajax({
type: "GET",
url: "js/document.js",
dataType: "script",
data: "info=hellothere",
success: function(msg) {
},
error: function(jqXHR, textStatus, errorThrown){
}
});
}
我想做的就是打印出document.js中参数'info'的内容
所以本质上应该打印'hellothere'。