大家好,我正在研究 jquery,我有一个像这样的 html 代码
<div>
<span class="span1">
<label class="checkbox" />
<input type="checkbox" class="regular-checkbox" id="Header" />
<label for="Header"></label>
</label>
</span>
<span class="span1">Images</span>
<span class="span1">SKU</span>
<span class="span2">Name</span>
<span class="span1">Price</span>
</div>
<div id="separate"></div>
<input type="button" id="button" />
我试过这样它不起作用
<script type="text/javascript">
$(document).ready(function(){
$(#button).click(function(){
$(function () {
$("input:checkbox").toggle(function () {
$("#Header").appendTo("#separate");
},function () {
$("#separate").appendTo($(this));
});
});
});
</script>
我有这个DIV
,我有一个checkbox
从这里我有一个图像,价格和名称(手机)。这是我的代码,当我选择 时,我有一个“href”图标,我提交了checkbox
图像,价格和名称应该移动到另一个DIV
我该怎么做,当我取消选择时checkbox
?它应该切换。你能帮我解决这个问题吗,在此先感谢。