标签:sha err mon error ssi 需要 通过 方式 share
a tag为成button使用,
把JavaScript动作处理时,有如下四种停止Event效果。
<a href="#">
<a href="javascript:;">
<a href="javascript:void(0)">
<a role="button" tabindex="0">
按照如下顺序可以考虑使用。
<a href="javascript:;" role="button">
javascript:void(0);
效果一样,但更简单<a role="button" tabindex="0">
(cursor 图表的话用 css 控制)
<a href="#">
缺点 #<button>, <input type="button" />
, <input type="image" />
。比使用button role property更好。href="javascript:;"
or href="javascript:void(0);"
href="#"
一样滚动跳到页面上单https://stackoverflow.com/questions/7452341/what-does-void-0-mean
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/void
以void(0)
代undefined
使用 (void是每次返回undefined)
理由: undefined是会override的。 (虽ECMAScript 5 或 newer上没问题。。。)
alert(undefined); //alerts "undefined"
var undefined = "new value";
alert(undefined) // alerts "new value"
void 0
(用量小,安全)void 0
一样的意思<a role="button" tabindex="0">
方式 #http://wit.nts-corp.com/2014/04/14/1297 > "a tag"
https://stackoverflow.com/questions/10510191/valid-to-use-a-anchor-tag-without-href-attribute
需要使用 a tag + 删除href 的方式的话(没有目的地的话):
tabindex="0"
【01】a tag只为成button用时候设置href的办法
标签:sha err mon error ssi 需要 通过 方式 share
原文地址:http://www.cnblogs.com/yeziTesting/p/7641422.html