猿问

为什么RETURN FALSE 没能阻止页面跳转到helloWorld页面

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<script >

window.onload = function(){

document.getElementsByTagName("a")[0].onClick = function(){

return false;

}

}  

</script>

</head>

<body>

<a href ="helloWorld.text">显示</a>

</body>

</html>


慕粉3541299
浏览 1406回答 2
2回答

stone310

onclick要全部小写,onClick 这个是不存在的

qq_那一眸的风情_03788798

你确定document.getElementsByTagName("a")[0]有值?
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答