function insertChildDiv(parentId)
{
var ChildComment = new Element('div', {'class':'padding'});
ChildComment.update('testing');
$().insert(ChildComment);
}
我想要该行中 $() 内的 parentId 的值
$().insert(ChildComment);
我已经试过了
$('parentId').insert(ChildComment);
但它将 parentId 评估为字符串,并正在寻找元素 id 为“parentId”的 div,因此错误将是 $("parentId") is null
也试过
$(parentId).insert(ChildComment);
但它返回错误“$(parentId).insert 不是函数”
顺便说一句,这个 html 调用了脚本
<a href="#" onclick="insertChildDiv(123456)" id="123456more">Replies and more</a>