小编典典

如何使用 jQuery 获取 href 值?

all

我正在尝试使用 jQuery 获取 href 值:

<html>
    <head>
        <title>Jquery Test</title>
         <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
        <script type="text/javascript">
        $(document).ready(function() {
            $("a").click(function(event) {
                alert("As you can see, the link no longer took you to jquery.com");
                var href = $('a').attr('href');
                alert(href);
                event.preventDefault();
            });
        });
        </script>
    </head>
    <body>
        <a href="http://jquery.com/">jQuery</a>
    </body>
</html>

但它不起作用。为什么?


阅读 113

收藏
2022-07-09

共1个答案

小编典典

你需要

var href = $(this).attr('href');

在 jQuery 点击处理程序中,该this对象指的是点击的元素,而在您的情况下,您总是获得<a>页面上第一个的
href。顺便说一句,这就是您的示例有效但您的真实代码无效的原因

2022-07-09