3

JQueryでクリックされたhref URLを検出する方法を知っている人はいますか? たとえば、次のリンクがあります。新しいページにリダイレクトされるものもあれば、javascript を呼び出して div を展開するものもあります。ID が使用されていない場合、JQuery/Javascript を使用して href を検出するにはどうすればよいですか。

<a href="www.test.com">Test 1</a>
<a href="javascript:test()">Test 2</a>
<a href="www.test2.com">Test 3</a>
<a href="www.test3.com">Test 4</a>
<a href="javascript:test2()">Test 5</a> 
4

1 に答える 1

7

JQueryでクリックされたhref URLを検出する方法を知っている人はいますか?

$("a").click(function(event){
    // Capture the href from the selected link...
    var link = this.href;

    alert(link);

    // do something if required....

    // would prevent the link from executing, if that is something you want to do...
    return false; // not needed if you want the link to execute normally...
});
于 2012-09-17T23:14:11.847 に答える