我通过 .ajax() 在 javascript 文件中调用 php 函数。
我有
$.ajax({
url: templateDir + 'functions.php',
async : false,
data: "function=images",
success: function (response) {
alert(response);
}
});
如果response
作为字符串 someObject.someMethod();
返回,我希望该字符串被解析并运行。我可以 console.log 或警告它,但我无法概念化如何让返回的字符串运行。
如果你不知道,我是 jquery 和 ajax 的新手。