gpt4 book ai didi

javascript挂起浏览器

转载 作者:行者123 更新时间:2023-11-30 09:10:10 24 4
gpt4 key购买 nike

xmlDoc.load("cd_catalog.xml")

var cd=xmlDoc.getElementsByTagName("CD");
var id_set=1;
var id=xmlDoc.getElementsByTagName("ID"+id_set);

i=0;

function next()
{
if (i<id.length-1)
{
i++;
display();

}
}


function display()
{
document.write('<div class="dd">')
document.write('<div class="blue" style="WIDTH:')
document.write(cd[0].getElementsByTagName("ID"+id_set)[i].childNodes[0].nodeValue)
document.write('"></div>')

document.write('</div>')

}


}
</script>

<script type="text/javascript"> display() </script>


<br><input type="button" onclick="next()" value="next" ID="Button2" NAME="Button2"/>

我看到了related question ,但不确定是否有帮助..我添加了 next() 函数,浏览器挂起,好像它正在加载某些东西,但从来没有。没有 next() 调用显示功能工作。我正在尝试做一个变体 of this .

最佳答案

那个related queston 确实有帮助。文档加载完成后,您不能使用 document.write()。请参阅其他问题的答案,了解如何替换 document.write()

关于javascript挂起浏览器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/616710/

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