我想问一下HTML标记
<a href="www.mysite.com" onClick="javascript.function();">Item</a>
如何使用 href* 和 onClick 使其 成为 标签?(最好先运行onClick,然后再运行href) ***
您已经有了所需的内容,但语法进行了少量更改:
<a href="www.mysite.com" onclick="return theFunction();">Item</a> <script type="text/javascript"> function theFunction () { // return true or false, depending on whether you want to allow the `href` property to follow through or not } </script>
<a>标签onclick和href属性的默认行为是执行onclick,然后按照进行href操作,直到onclick不返回就false取消该事件(或未阻止该事件)
<a>
onclick
href
false