1. ホーム
  2. javascript

[解決済み] HTML tag <a> want to add both href and onclick working

2022-05-03 23:28:08

Question

I'd like to ask about HTML tag

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

How to make this a tag working with href and onClick ? (prefer onClick running first then href)

How to solved?

You already have what you need, with a minor syntax change:

<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>

The default behavior of the <a> tag's onclickhref プロパティを実行することです。 onclick に続いて href がある限り onclick を返さない false イベントをキャンセルする(またはイベントを防止していない)。