以下代码的prototype.js等价物是什么
jQuery('#txtId').after(divdata);
以下代码的prototype.js等价物是什么
jQuery('#txtId').after(divdata);
http://www.prototypejs.org/api/element/insert
那么你使用插入看看上面的链接
$('selector').insert ({'after': 'Content'});
在你的情况下,它看起来像这样
$('#txtId').insert ({'after':divdata});
死了这个工作?我认为在 jquery 中没有类似 after 的快捷方式。
$(selector).each(function(){
appendChild(document.createTextNode("Text or html to insert"));
});