这是我无法工作的 jquery 片段。我正在尝试通过 jsonpCallback 调用 blackBackground()
$(document).ready(function()
{
function blackBackground(data, status)
{
console.log("black background");
//I want to eventually change the body style to black
}
$.ajax({
url: 'http://localhost:3000/someurl',
dataType: 'jsonp',
jsonp: false,
jsonpCallback: 'blackBackground'
});
});
更新:
jsonpCallback: 'blackBackground'
到
jsonpCallback: blackBackground
连同将 blackBackground 移动到全局范围。感谢所有的回复。