如何使用 jQuery 鼠标悬停时给超链接加下划线?


要使用 jQuery 在鼠标悬停时给超链接加下划线,请使用 jQuery css() 属性。使用 color text-decoration 属性。

范例

您可以尝试运行以下代码来了解如何使超链接在鼠标悬停时加下划线

实时演示

<html>

   <head>
      <title>jQuery Hyperlink Decoration</title>
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
       
      <script>
         $(document).ready(function() {

            $('a').hover(
               
               function () {
                  $(this).css({"text-decoration":"underline"});
               });
               
         });
      </script>
      <style>
      a {
           text-decoration: none;
         }
     </style>
   </head>
   
   <body>
      <a href="#">Demo text</a>
       
   </body>
   
</html>

更新于: 11-Dec-2019

527 次浏览

开启您的职业生涯

完成课程即可获得认证

开始学习
广告