2个回答
展开全部
当然可以啊:
<div id=test></div>
<script>
for(var i=0;i<10;i++){
var child=document.createElement("span");
child.innerHTML=i+1;
test.appendChild(child);
}
</script>
关键在于每次重写的子元素都要重新生成,而不能够把同一个元素修改后添加,否则最终只有一个子元素被添加。
<div id=test></div>
<script>
for(var i=0;i<10;i++){
var child=document.createElement("span");
child.innerHTML=i+1;
test.appendChild(child);
}
</script>
关键在于每次重写的子元素都要重新生成,而不能够把同一个元素修改后添加,否则最终只有一个子元素被添加。
追问
我是问appendChild这个方法函数本身能不能重写成我自己写的函数,比如我在自己重写的函数里加了一个console.log,这样我就知道代码的哪些地方用了appendChild。
像alert能用window.alert = function (name) {}重写这样
展开全部
可以重写。例如document.body.appendChild
var _bodyProto = HTMLBodyElement.prototype.appendChild;
HTMLBodyElement.prototype.appendChild = function() {
_bodyProto.apply(this, arguments);
alert('插入成功!!!~~~');
};
document.body.appendChild(document.createElement('a'));
var _bodyProto = HTMLBodyElement.prototype.appendChild;
HTMLBodyElement.prototype.appendChild = function() {
_bodyProto.apply(this, arguments);
alert('插入成功!!!~~~');
};
document.body.appendChild(document.createElement('a'));
追问
重写的那个函数能再详细一点吗,你现在这个appendChild原来的功能没了啊。
我想实现的是那种a标签能正常加到body里,同时能有个alert或console.log告诉我代码用了appendChild加了个a标签
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询