夺命雷公狗---在js里阻止a标签的跳转和form表单的跳转
Posted 夺命雷公狗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了夺命雷公狗---在js里阻止a标签的跳转和form表单的跳转相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <title></title> </head> <body> <a href="http://www.baidu.com">百度</a> <a href="http://www.qq.com" onclick = "return f1()">腾讯</a> <a href="http://www.qq.com" onclick="javascript:return confirm(‘确认要删除吗?‘)">删除</a> <form action="http://www.taobao.com" method="post" > 用户名: <input type="text" name="uesrname" /> <input type="submit" value="提交" /> </form> <script type="text/javascript"> function f1(){ console.log(‘not‘); return false; } var a = document.getElementsByTagName(‘a‘)[0]; a.onclick = function(){ console.log(‘NOT---A‘); return false; } var forms = document.getElementsByTagName(‘form‘)[0]; /* W3C浏览器下的 */ /* forms.addEventListener(‘submit‘,function(evt){ console.log(‘not----form‘); evt.preventDefault(); }); */ /* IE浏览器下的 */ forms.attachEvent(‘onsubmit‘,function(){ console.log( ‘表单提交了‘ ); window.event.returnValue = false; }) </script> </body> </html>
以上是关于夺命雷公狗---在js里阻止a标签的跳转和form表单的跳转的主要内容,如果未能解决你的问题,请参考以下文章
夺命雷公狗---DEDECMS----20dedecms取出栏目页对应的内容
夺命雷公狗---DEDECMS----24dedecms让网站头部分离
夺命雷公狗---DEDECMS----9dedecms单标签