$("div").unbind("click dblclick")
2015-07-19
$("#default").html($("#divtest").html());
2015-07-19
<script type="text/javascript">
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle()
})
});
</script>
$(function () {
$("#btntest").bind("click", function () {
$("div").toggle()
})
});
</script>
2015-07-19
这里解释的不好:pre+next:
返回pre下一个同级的next元素
$("p div")返回p紧邻的同级的div元素
返回pre下一个同级的next元素
$("p div")返回p紧邻的同级的div元素
2015-07-19
<a href="#" onClick="qh()">更多</a><script>
$(".none").hide();
function qh(){
if($("a").html()=="更多"){
$(".none").show();
$("a").html("简洁");
}else{
$(".none").hide();
$("a").html("更多")
} }
</script>
$(".none").hide();
function qh(){
if($("a").html()=="更多"){
$(".none").show();
$("a").html("简洁");
}else{
$(".none").hide();
$("a").html("更多")
} }
</script>
<ui>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li class="none">6</li>
<li class="none">7</li>
<li class="none">8</li>
<li>9</li>
</ui>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li class="none">6</li>
<li class="none">7</li>
<li class="none">8</li>
<li>9</li>
</ui>