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


要使用 jQuery 在鼠标悬停时给超链接加下划线,请使用 jQuery css() 属性。颜色 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-12-2019

527 次浏览

开启你的 职业生涯

完成课程获得认证

开始入门
广告