gpt4 book ai didi

javascript - 在屏幕上注入(inject)/返回新元素

转载 作者:行者123 更新时间:2023-11-28 02:15:48 28 4
gpt4 key购买 nike

下面的代码显示 div 被注入(inject)到 a 元素中。如何显示 div 元素,使其不被注入(inject)到任何内容中。所以而不是

<a href="#">
<div class="example></div>
</a>

我有这个

<a href="#">
</a>
<div class="example></div>

JS

display: function() {
var n = new Element('a',{
'class': 'postItem',
'data-id': this.id,
'text': this.title,
'href': '#',
events: {
click: function(){
var id = this.get('data-id')
callThread(id);
}
}
});

var deleteT = new Element('div',{
'class': 'deleteItem',
'data-id': this.id,
'text': 'Delete',

events: {
click: function(){
var deleteID = this.get('data-id')
deleteThread(deleteID)
}
}

})

deleteT.inject(n);
return n;
}

最佳答案

mootools inject 方法接受第二个参数[where]:Element.inject

所以你问的是之后:

deleteT.inject(n,'after');

关于javascript - 在屏幕上注入(inject)/返回新元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16424020/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com