方法:1、用removeAttr方法将a元素的href属性移除,语法为“$(“a”).removeAttr(“href”)”;2、用attr方法将a元素的href属性设置为空,语法为“$(“a”).attr(“href”,” “)”。
本教程操作环境:windows10系统、jquery3.2.1版本、Dell G3电脑。
jquery怎么让a元素的href失效
1、利用removeAttr方法
removeAttr() 方法从被选元素移除一个或多个属性。
$("a").removeAttr("href");