我试图调用一个外部.js文件,该文件会将文本放入我的一个文件中。
当包含在index.php中时,该脚本可以正常工作,但在使用以下内容时:
<script src="js/updates.js"></script>
进入index.php,它会在updates.js中返回语法错误。
<script type="text/javascript">
xmlhttp = new XMLHttpRequest();
setInterval(chatStatus(),3000);
function chatStatus()
{
xmlhttp.onreadystatechange =
function()
{
if(xmlhttp.readyState == 4 && xmlhttp.status==200)
{
document.getElementById('chatStatus').innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "phprequests/chatStatus.php", true); <------ this line returns syntax error.
xmlhttp.send();
}
</script>
感谢任何帮助。为什么会在index.php文件之外返回语法错误?
答案 0 :(得分:0)
从外部.js文件中删除脚本标题解决了这个问题。
textarea
{
background:yellow;
color:red;
}