what I want to do is when someone click anywhere in the page.
A new window will open, but I want this to happen only once, so when someone click again on body, the function should not run.
Any advice? No jquery please.
<!DOCTYPE html>
<html>
<body onclick="myFunction()">
<script>
function myFunction() {
window.open("http://www.w3schools.com");
}
</script>
</body>
</html>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…