在jquery中,可以利用removeAttr()方法让超链接禁用,该方法能够删除元素中的属性,只要删除超链接元素的“href”属性即可,语法为“超链接元素对象..removeAttr('href');”。
本教程操作环境:windows10系统、jquery3.2.1版本、Dell G3电脑。
removeAttr() 方法从被选元素移除一个或多个属性。
语法
$(selector).removeAttr(attribute)
attribute 必需。规定要移除的一个或多个属性。如需移除若干个属性,请使用空格分隔属性名称。
去掉a标签中的href属性
示例如下:
<html> <head> <meta charset="utf-8"> <title>123</title> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("a").removeAttr('href'); }); }); </script> </head> <body> <a href="http://www.php.cn">这是一个链接</a> <button>禁用这个链接</button> </body> </html>
输出结果:
相关视频教程推荐:jQuery视频教程
以上是jquery怎么让超链接不可用的详细内容。更多信息请关注PHP中文网其他相关文章!