href="javascript:xxx(this);"和onclick="javascript:xxx(this);"的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了href="javascript:xxx(this);"和onclick="javascript:xxx(this);"的区别相关的知识,希望对你有一定的参考价值。
href="javascript:xxx(this);"和onclick="javascript:xxx(this);"
一直以为这两种写法是等同的,今天在项目中使用时发现前者的this根本拿不到触发事件的A标签,而后者可以拿到
一般在做分页按钮时会用A标签来做,但是一般都会写<a href="#" onclick="turnPage(1,10)">之类的
href="#"会导致分页在跳转时页面先跳到当前页面顶部用户体验不好,所以一般推荐写成
<a href="javascript:void(0);" onclick="turnPage(1,10,this)">
甚至如果跳转的方法不需要拿到当前的A标签this的话,也可以直接写成
<a href="javascript:turnPage(1,10);" >
转自:http://blog.csdn.net/apei830/article/details/12858175
以上是关于href="javascript:xxx(this);"和onclick="javascript:xxx(this);"的区别的主要内容,如果未能解决你的问题,请参考以下文章
href="javacript:;" href="javacript:void;" href="#"区别。。。
a标签中href="javacript:;" href="javacript:void;" href="#"区别
关于js中"window.location.href""location.href""parent.location.href"&qu