我正在尝试使用prototype.js
插入一段html代码当我定位html元素(例如
)时,我能够做到这一点$('footer').insert({top: '<div id="footer_inner"><small>CompanyName, LLC</small></div>'})
是否可以在文本之后插入div,例如
是否可以定位文本级别3?并在其后插入一个块html?
提前致谢
答案 0 :(得分:0)
不确定。只需使用after
作为insert()
的第一个参数:
$('level3').insert({after: '<p>HTML goes here</p>'});