gpt4 book ai didi

jQuery 相当于原型(prototype) Ajax.Request

转载 作者:行者123 更新时间:2023-11-30 23:52:38 25 4
gpt4 key购买 nike

相当于以下原型(prototype) AJAX 请求的 jQuery 是什么?

function showSnapshotComments(snapshot) {
new Ajax.Request('/photos/show_snapshot_comments/'+ snapshot.id,
{asynchronous:true, evalScripts:true});
}

最佳答案

您可以使用$.ajax()功能

function showSnapshotComments(snapshot) {
$.ajax({
url: '/photos/show_snapshot_comments/' + snapshot.id,
dataType: 'script'
});
}

$.getScript()如果您愿意,可以使用等效的函数:

function showSnapshotComments(snapshot) {
$.getScript('/photos/show_snapshot_comments/' + snapshot.id);
}

关于jQuery 相当于原型(prototype) Ajax.Request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5544871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com