我的应用显示错误消息。我想在用户点击页面中的内容时删除错误消息。
我只需要javascript 我试过这段代码,
$(body).click(function(){});
但它正在使用jquery。
答案 0 :(得分:0)
document.onclick = function() {
document.getElementById('error-controller').style['display'] = 'none';
}

#error-controller {
display:block;
background:#e8e8e8;
text-align:center;
padding:10px
}

<div id="error-controller">Heads up! Error</div>
&#13;
答案 1 :(得分:0)
例如
<!DOCTYPE html>
<html>
<body>
<button onclick="submit()">print</button> <!--triggers a function-->
<p id="hello"></p>
<script>
function submit() {
document.getElementById("hello").innerHTML = "Hello World";
}
</script>
</body>
</html>