我是html的新手。当我单击“大声笑我”按钮时,我的以下代码使网页空白?而不是“ LOL”。以下代码有什么问题。
<html>
<body>
Hi there<br>
<script>
var x = "John said, \"Boy this is good\"";
var y = true;
function write(){
document.write('LOL');
}
function funcy(){
alert('Trozan virus');
}
</script>
<input type="button" value="press me" onclick="funcy()">
<input type="button" value="Lol me" onclick="write()">
</body>
</html>
关于, 巴努