jQuery
CDN
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
clone()
$("button:eq(0)").click(function() {
$("ol").append($("li").clone());
});
$("button:eq(0)").hover(
function() {
$("ol").css("color", "pink");
},
function() {
$("ol").css("color", "black");
});
append()
$("button:eq(1)").click(function() {
const lis_r = $("<li>jQuery replaceWith()方法</li>");
const lis_c = $("<li>jQuery clone()方法</li>");
if ($("li").html() == "jQuery clone()方法") {
$("ol").append(lis_c);
} else {
$("ol").append(lis_r);
}
});
remove(),empty()
$("button:eq(2)").dblclick(function() {
tips();
$("ol").empty();
});
$("button:eq(2)").click(function() {
$("li:last").remove();
});
function tips() {
if ($("ol").text() == "") {
alert("请先增加元素!");
};
};
replaceWith()
$("button:eq(3)").click(function() {
const lis_r = $("<li>jQuery replaceWith()方法</li>");
const lis_c = $("<li>jQuery clone()方法</li>");
if ($("li").html() == "jQuery clone()方法") {
$("li").replaceWith(lis_r);
} else {
$("li").replaceWith(lis_c);
}
});
$("button:eq(4)").click(function() {
$("button:eq(2)").unbind("click");
});
全部
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("button:eq(0)").click(function() {
$("ol").append($("li").clone());
});
$("button:eq(0)").hover(
function() {
$("ol").css("color", "pink");
},
function() {
$("ol").css("color", "black");
});
$("button:eq(1)").click(function() {
const lis_r = $("<li>jQuery replaceWith()方法</li>");
const lis_c = $("<li>jQuery clone()方法</li>");
if ($("li").html() == "jQuery clone()方法") {
$("ol").append(lis_c);
} else {
$("ol").append(lis_r);
}
});
$("button:eq(2)").dblclick(function() {
tips();
$("ol").empty();
});
$("button:eq(2)").click(function() {
$("li:last").remove();
});
function tips() {
if ($("ol").text() == "") {
alert("请先增加元素!");
};
};
$("button:eq(3)").click(function() {
const lis_r = $("<li>jQuery replaceWith()方法</li>");
const lis_c = $("<li>jQuery clone()方法</li>");
if ($("li").html() == "jQuery clone()方法") {
$("li").replaceWith(lis_r);
} else {
$("li").replaceWith(lis_c);
}
});
$("button:eq(4)").click(function() {
$("button:eq(2)").unbind("click");
});
});
</script>
<style type="text/css">
button:nth-child(5){
background: #245123;
}
</style>
</head>
<body>
<button type="button">复制</button>
<button type="button">增加</button>
<button type="button">删除</button>
<button type="button">替换</button>
<button type="button">失效</button>
<ol>
<li>jQuery clone()方法</li>
</ol>
</body>
</html>