与这个Prototype片段相当的jQuery是什么?
if ($('recent_forum_topics') != undefined) {
new Ajax.Updater({
success: 'recent_forum_topics'
},
'/welcome/recent_forum_topics');
}
答案 0 :(得分:4)
更简单,.load()
:
$('#recent_forum_topics').load('/welcome/recent_forum_topics');
答案 1 :(得分:1)
假设recent_forum_topics是div id。
if ($('#recent_forum_topics').length) {
$.ajax({
url: '/welcome/recent_forum_topics',
success: function(data) {
$('#recent_forum_topics').html(data);
}
});
}
答案 2 :(得分:0)
我认为最简单的版本是:
$('#recent_forum_topics').load('/welcome/recent_forum_topics');