我正在WordPress中创建网站,但突然&&
运算符停止在Javascript / jQuery代码中工作。例如代码
<p>Click the button to trigger a function.</p>
<button onclick="myFunction()">Click me</button>
<p id="demo"></p>
<script>
function myFunction()
{
var x=9, y=3;
if (x < 10 && y > 1){
document.getElementById("demo").innerHTML="Hello World";
}
}
</script>
完全没有WordPress工作,但在WordPress中单击按钮后没有结果。该代码在没有&&
运算符的WordPress中运行(例如if (x < 10))
或使用||
运算符而不是&&
。