HTML-document.write

时间:2019-02-07 19:40:06

标签: javascript html button document.write

我是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>

关于, 巴努

0 个答案:

没有答案