0
我正在嘗試在我的Thymeleaf
頁面中進行Ajax調用。因此,這裏的代碼實體名稱必須緊跟在實體引用中的'&'後面。 javascript
<script>
function getTodayRequest(){
console.log("here is today");
var xhttp=new XMLHttpRequest();
xhttp.onreadystatechange=function(){
if(this.readyState==4 && this.status==200){
document.getElementById("received").innerHTML=
this.responseText;
}
};
xhttp.open("GET","URI",true);
}
</script>
因此,它與錯誤complins:
the entity name must immediately follow the '&' in the entity reference. java
,我已經改變了&
與&
,現在它看起來像:
if(this.readyState==4 && this.status==200)
但現在又它抱怨着:
Uncaught SyntaxError: Unexpected token ;
在第二個&
我該如何處理?
我不是專家,但據我所知,你可以在HTML註釋包裹腳本代碼,即''。 – Thomas
不幸的是'&'不是JS中的有效運算符。這是一個HTML實體。 – evolutionxbox
[實體名稱必須緊跟在實體引用的'&'後面](http://stackoverflow.com/questions/16303779/the-entity-name-must-immediately-follow-the-in-the -entity-reference) – thatOneGuy