gpt4 book ai didi

javascript - 我希望将返回的数据写入html的div标签中

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

<script>
function showPrice(str)
{
if (str=="")
{
document.getElementById("remaining").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("remaining").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","getevent.php?q="+str,true);
xmlhttp.send();
}
</script>

以下代码将数据返回到相应的div,但是当我查看源代码时,我无法找到新插入的代码。

最佳答案

那是因为它是动态添加到 dom 中的。如果您右键单击并检查元素(Chrome 和 Firefox),某些浏览器会显示更新后的 html。其他人只是向您展示其下载方式的开始版本。

关于javascript - 我希望将返回的数据写入html的div标签中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14836353/

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