huli
contact me: aszx87410@gmail.com
Lesson 8 : jQuery 入門
<div id="good"></div>
<div class="product"></div>
$("#good").hide();
$(".product").fadeOut();
$(".product").fadeIn(500);
$("#good").html("yaaaa");
$("#good").val("good");
$("#good").addClass("product");
$(".product").fadeOut();
$("#good").removeClass("product");
<div id="intro"></div>
<button id="btn">click me</button>
var counter = 0;
//寫法一
$("#btn").click(handler);
var handler = function(){
$("#intro").html(counter++);
}
//寫法二
$("#btn").click(function(){
$("#intro").html(counter++);
});
<div id="content">
<button class="btn" value="1">1</button>
<button class="btn" value="2">2</button>
<button class="btn" value="3">3</button>
<button id="clear">clear</button>
<div id="result"></div>
</div>
$(".btn").click(function(){
var val = $(this).val();
$("#result").append(val);
});
$("#clear").click(function(){
$("#result").empty();
})
<div id="content">
Hello World.
</div>
<button id="show_me">show</button>
<button id="hide_me">hide</button>
$("#show_me").click(function(){
$("#content").fadeIn();
});
$("#hide_me").click(function(){
$("#content").fadeOut(1000);
});
<ul id="list">
<li>google</li>
<li>yahoo</li>
<li>amazon</li>
<li>apple</li>
<li>facebook</li>
<li>netappstore</li>
</ul>
$("#list li").click(function(){
if($(this).hasClass("active")){
$(this).removeClass("active");
}else{
$(this).addClass("active");
}
});
.active{
background-color:red;
}
li{
padding: 5px;
}
By huli