How jquery makes hyperlinks unavailable
This article mainly explains how jquery makes hyperlinks unavailable. Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let Xiaobian take you to learn "jquery how to make hyperlinks unavailable"!
In jquery, hyperlinks can be disabled using the removeAttr() method, which removes attributes from elements by deleting the "href" attribute of the hyperlink element with the syntax "Hyperlink element object.. removeAttr('href');"。
Operating environment for this tutorial: Windows 10 system, jquery version 3.2.1, Dell G3 computer.
jquery how to make hyperlinks unavailable
The removeAttr() method removes one or more attributes from the selected element.
syntax
$(selector).removeAttr(attribute)
attribute is required. Specify one or more attributes to remove. To remove several attributes, separate attribute names with spaces.
Remove the href attribute from the a tag
Examples are as follows:
123$(document).ready(function(){$("button").click(function(){$("a").removeAttr ('href ');});}); This is a link Disable this link
Output:
At this point, I believe everyone has a deeper understanding of "how jquery makes hyperlinks unavailable", so let's actually operate it! Here is the website, more related content can enter the relevant channels for inquiry, pay attention to us, continue to learn!