我正在将一个 div 插入到另一个 div 中,我确实在这篇文章的帮助下完成了
Inserting a Div Into another Div? . 这是我的代码,它工作正常。这个函数被一个元素调用
<asp:LinkButton ID="LinkButton1" OnClientClick="generateDiv(); return false;
"runat="server"
Text="Create New Group" CausesValidation="False"></asp:LinkButton>
function generateDiv() {
var grup = document.createElement('div');
grup.setAttribute('class', 'genDiv');
grup.setAttribute('id', 'genId');
this.grp.appendChild(grup);
}
有什么区别:
document.getElementById("#grp").appendChild(grup)
和
this.grp.appendChild(grup);