使用JavaScript从链接中删除href

时间:2016-05-24 15:40:00

标签: javascript jquery html

我正在使用此代码从我的页面中删除href链接。它工作得很好,除了我不想定位所有链接。相反,我想要定位div中的所有链接,例如禁用ID为“test2”的特定div的所有链接。

var all_links = document.getElementsByTagName("a");

for(var i=0; i<all_links.length; i++){
    all_links[i].removeAttribute("href");
}

4 个答案:

答案 0 :(得分:2)

您可以使用querySelectorAll()。传递与您需要定位的元素相匹配的CSS selector。根据您的描述,div#test2 a将会:

var all_links = document.querySelectorAll("div#test2 a");

for(var i=0; i<all_links.length; i++){
    all_links[i].removeAttribute("href");
}

JSFiddle

或者,为了获得最大兼容性(IE <9):

var all_links = document.getElementById('test2').getElementsByTagName("a");

答案 1 :(得分:1)

包含jQuery标记: -

$('#test2 a').removeAttr('href');
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<a href="test">test</a> 

<div id="test2">
  <a href="test1">test</a>
  <a href="test2">test</a>
</div>

答案 2 :(得分:0)

由于您已使用jQuery对其进行了标记,因此您可以使用以下命令:

$("div#test2 a").removeAttr("href");

答案 3 :(得分:0)

这里有一些选项,这里使用ES6:

// retrieving all <a> elements within <div id="test2">, using
// document.querySelectorAll() and converting that collection
// into an Array, using Array.from():
var all_links = Array.from(document.querySelectorAll("div#test2 a"))

    // iterating over that Array using Array.prototype.forEach(),
    // along with an Arrow function to remove the 'href' attribute
    // from each of the <a> elements in the Array:
    .forEach(link => link.removeAttribute('href'));

&#13;
&#13;
var all_links = Array.from(document.querySelectorAll("div#test2 a")).forEach(link => link.removeAttribute('href'));
&#13;
<a href="#href1">Link 1</a>
<div id="test2">
  <a href="#href2">Link 2</a>
  <a href="#href3">Link 3</a>
</div>
<a href="#href4">Link 4</a>
<div id="test3">
  <a href="#href5">Link 5</a>
  <a href="#href6">Link 6</a>
</div>
&#13;
&#13;
&#13;

或者,不是删除href属性而是将其设置为'#'的值:

var all_links = Array.from(document.querySelectorAll("div#test2 a"))

    // here we use setAttribute() to set the value of the href
    // attribute to the '#' value:
    .forEach(link => link.setAttribute('href', '#'));

&#13;
&#13;
var all_links = Array.from(document.querySelectorAll("div#test2 a")).forEach(link => link.setAttribute('href', '#'));
&#13;
<a href="#href1">Link 1</a>
<div id="test2">
  <a href="#href2">Link 2</a>
  <a href="#href3">Link 3</a>
</div>
<a href="#href4">Link 4</a>
<div id="test3">
  <a href="#href5">Link 5</a>
  <a href="#href6">Link 6</a>
</div>
&#13;
&#13;
&#13;

或者,假设没有<a>属性的href元素可以说没有特定的用途&#39;我们可以打开文本或其他内容,并删除不再有用的<a>元素:

var all_links = Array.from( document.querySelectorAll("div#test2 a") )

  // using the anonymous function of Array.prototype.forEach() rather
  // than Arrow functions, given the work being done here:
  .forEach(function(link){

    // while the <a> element has a firstChild:
    while(link.firstChild) {

      // we access the parentNode of the <a> and
      // use the insertBefore() method to insert
      // the firstChild of the <a> before the <a>:
      link.parentNode.insertBefore(link.firstChild, link);
    }

    // once the <a> is emptied of its content,
    // we again access the parentNode and remove
    // the <a> element itself:
    link.parentNode.removeChild(link);
});

&#13;
&#13;
var all_links = Array.from(document.querySelectorAll("div#test2 a")).forEach(function(link) {
  while (link.firstChild) {
    link.parentNode.insertBefore(link.firstChild, link);
  }
  link.parentNode.removeChild(link);
});
&#13;
<a href="#href1">Link 1</a>
<div id="test2">
  <a href="#href2">Link 2</a>
  <a href="#href3">Link 3</a>
</div>
<a href="#href4">Link 4</a>
<div id="test3">
  <a href="#href5">Link 5</a>
  <a href="#href6">Link 6</a>
</div>
&#13;
&#13;
&#13;

参考文献: