4

以下代码的prototype.js等价物是什么

jQuery('#txtId').after(divdata);
4

3 回答 3

7

http://www.prototypejs.org/api/element/insert

那么你使用插入看看上面的链接

 $('selector').insert ({'after': 'Content'});

在你的情况下,它看起来像这样

$('#txtId').insert ({'after':divdata});
于 2010-12-07T07:28:00.597 回答
0

正在寻找这个,

new Insertion.After('id of element', "HTML");

Ref

于 2010-12-07T07:27:52.887 回答
0

死了这个工作?我认为在 jquery 中没有类似 after 的快捷方式。

$(selector).each(function(){
   appendChild(document.createTextNode("Text or html to insert"));
 });
于 2010-12-07T07:28:43.443 回答