小编典典

HTML标签希望同时添加href和onclick

javascript

我想问一下HTML标记

<a href="www.mysite.com" onClick="javascript.function();">Item</a>

如何使用 href*onClick 使其 成为 标签?(最好先运行onClick,然后再运行href) ***


阅读 291

收藏
2020-05-01

共1个答案

小编典典

您已经有了所需的内容,但语法进行了少量更改:

<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>标签onclickhref属性的默认行为是执行onclick,然后按照进行href操作,直到onclick不返回就false取消该事件(或未阻止该事件)

2020-05-01