如何使用 jQuery 从文本超链接中删除下划线?
要使用 jQuery 删除文本超链接中的下划线,请使用 jQuery css() 属性。color text-decoration 属性值使用 none。
范例
可以尝试运行以下代码,了解如何从文本超链接中删除下划线
<html> <head> <title>jQuery Text Decoration</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $('a').hover( function () { $(this).css({"text-decoration":"none"}); }); }); </script> <style> a { text-decoration: underline; } </style> </head> <body> <a href="#">Demo text</a> </body> </html>
广告