我不明白。为什么页面加载时会出现此警报?如何使其仅“聚焦”警报?
<input id="mail" name="E-post" value="E-post">
<script>
window.onload = function () {
function onfocusFunction() {
alert('Why!?');
}
var myMail = document.getElementById('mail');
myMail.onfocus = onfocusFunction();
}
</script>