jQuery只是克隆VALUE元素

时间:2018-01-07 11:58:56

标签: jquery html

我需要将元素的值克隆到另一个元素

svg

我想在div上打印值

svg

jQuery :有了这个,所有.svg标签都已被克隆!我想要克隆元素的值!

<a id="button" href="">Google</a>

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

  

clone() create a deep copy of the set of matched elements.

但是有几种方法可以实现这个目标

1:Using html() jQuery

&#13;
&#13;
$('#destination').html($('#button').html());
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a id="button" href="">Google</a>
<div id="destination"></div>
&#13;
&#13;
&#13;

2:Using text() jQuery

&#13;
&#13;
$('#destination').text($('#button').text());
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<a id="button" href="">Google</a>
<div id="destination"></div>
&#13;
&#13;
&#13;