如何在jQuery的div标签中的<br>
和</small>
之间剪切/粘贴文本?
<small>Price for one. <br> Price for two.</small>
我的Div
<div id="try"></div>
答案 0 :(得分:3)
您想要剪切/粘贴,您可以访问文本节点,然后将其附加到div,如
$('#try').append($('small br').prop('nextSibling'))
small {
color: red;
}
div {
color: green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<small>Price for one. <br> Price for two.</small>
<div id="try"></div>
答案 1 :(得分:0)
试试这个,
$(function(){
var html=$('small').html();
$('#try').html(html.split('<br>')[1]);
});