<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
在新版本jQ中,wrapAll 通过回调函数为节点添加包裹和wrapAll("<div><div>")效果一样
在新版本jQ中,wrapAll 通过回调函数为节点添加包裹和wrapAll("<div><div>")效果一样
2016-09-02
找到class="item-1"的li元素
通过closest方法往上找到class=".level-2"的li元素
加上边框颜色
$("button:first").click(function() {
$(".item-1")
.closest(".level-2")
.children()
.css('border', '1px solid yellow');
通过closest方法往上找到class=".level-2"的li元素
加上边框颜色
$("button:first").click(function() {
$(".item-1")
.closest(".level-2")
.children()
.css('border', '1px solid yellow');
2016-09-02
$("<p style='color:red'>测试insertBefore方法增加</p><p style='color:red'>多参数</p>").insertBefore($(".test1"))
}),多参数其实可以换一种办法实现
}),多参数其实可以换一种办法实现
2016-09-02
var p = $("p:first").remove();
$("body").append(p);
元素内容与样式不变,但是事件消失
$("body").append(p);
元素内容与样式不变,但是事件消失
2016-09-02
如果先点击 detach()方法的button,$("p:first").detach();会把第一个<p>删除
2016-09-02