我正试图将一个类的内容移动(特定于前面)成为div。
这是我想要移动的课程:
<font class="pricecolor colors_productprice">
<span class="PageText_L483n">
<span itemprop='price'>$11.00</span> per 2 oz bag</span>
</font>
以下是我希望将其移入的ID:
<td valign="top">
<span class="PageText_L71n">Quantity:</span>
<input type="text" class="v65-productdetail-cartqty" name="QTY.KCJ-CP" size="3">
</td>
这是当前不成功的jQuery尝试:
<script>
$(document).ready(function(){
$("#v65-productdetail-action-wrapper").prepend(".PageText_L483n");
});
</script>
您无法从提供的代码中看出,但“#v65-productdetail-action-wrapper”是第二个代码块所在的容器。您可能已经知道,这只是在文字字符串前面加上“。 PageText_L483n“,而不是它的内容。
答案 0 :(得分:0)
$("#v65-productdetail-action-wrapper").prepend($(".PageText_L483n").first());
删除
$(".PageText_L483n").first().html("");
或者
$(".PageText_L483n").first().remove();
两者都应该有用。
你要为休息所要做的就是在课堂上加上一个字母并将其添加到id。
$("#v65-productdetail-action-wrapper").prepend($(".PageText_L483n").first().append("<br>"));
应该这样做。