转换<a> text string to dom element with jQuery</a>

时间:2015-04-02 17:55:47

标签: javascript jquery html

如何将链接中的文本转换为html元素?

我正在使用 $('a').text(); 来定位文本,该文本返回值,但我无法将元素添加到其中。

我试过这个:

$('a').text();

我知道这应该会在链接中添加一个文本元素,这不是最好的做法,但即使这样也行不通。

我真正需要的是删除整个文本并在de link作为文本元素后立即重写它。

任何帮助表示赞赏。谢谢

标记:

var someText = $('a').text();
var theElement = $('< p >' + someText + '< /p >');
someText.replaceWith(theElement);

我想要的是什么:

<li>
<a href="/"> <img src="image.png"> text to be converted to element </a>
</li>

4 个答案:

答案 0 :(得分:2)

由于someText是一个字符串,而不是jQuery元素,因此您无法在其上调用.replaceWith()。尝试这样的事情:

var someLink = $('a');
var someText = someLink.text();
var theElement = $('<p>' + someText + '</p>'); // no spaces inside tags
someLink.replaceWith(theElement);

http://jsfiddle.net/0xxrL6zy/


更新由于您在问题中添加了新信息,因此这是满足您需求的解决方案:

var someLink = $('a');
var someText = someLink.text();
var someImg = someLink.find('img');
var theElement = $('<p>' + someText + '</p>');
someLink.html(someImg).after(theElement);

http://jsfiddle.net/mblase75/mzbtr0qp/1/

答案 1 :(得分:2)

http://jsfiddle.net/cvgbqb8b/2/

var anchor = $('li a');
anchor.after('<p>' + anchor.text() + '</p>')
    .contents()
    .filter(function(){
        return (this.nodeType == 3);
    })
    .remove();

在此处找到了删除文本的代码https://stackoverflow.com/a/17852238/1415091

答案 2 :(得分:1)

我建议:

// iterate over each of the <a> elements within <li> elements:
$('li a').each(function() {
  // create a <p> element, setting its text
  // to that of the 'this' element (the <a>):
  $('<p>', {
    'text': this.textContent
  // insert that created <p> after the current <a> element:
  }).insertAfter(this);

  // filtering the childNodes of the current <a>:
  $(this).contents().filter(function() {
    // keeping only those that are of nodeType === 3
    // and therefore are textNodes:
    return this.nodeType === 3;
  // removing those nodes:
  }).remove();
});

$('li a').each(function() {
  $('<p>', {
    'text': this.textContent
  }).insertAfter(this);
  $(this).contents().filter(function() {
    return this.nodeType === 3;
  }).remove();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul>
  <li>
    <a href="/">
      <img src="http://lorempixel.com/300/300/people" />text to be converted to element</a>
  </li>
</ul>

参考文献:

答案 3 :(得分:0)

使用.html()

var someText = 'Hey!';
$('#test').html('<p>' + someText + '</p>');

小提琴:http://jsfiddle.net/howderek/3t3Lw75x/