jQuery鏈式呼叫簡單例項程式碼

antzone發表於2017-03-07

鏈式呼叫是jQuery的優勢之一,先看一段下面的程式碼:

[JavaScript] 純文字檢視 複製程式碼
$("thediv").html("螞蟻部落歡迎您");
$second.on('click',function(){
  alert('螞蟻部落');
});
$("thediv").fadeIn('slow');
$("thediv").animate({height:'120px'},500);

以上程式碼完全可以以鏈式呼叫的方式實現,程式碼修改如下:

[JavaScript] 純文字檢視 複製程式碼
$("thediv").html("螞蟻部落歡迎您");
$("thediv").on('click',function(){
  alert('螞蟻部落');
}).fadeIn('slow').animate({height:'120px'},500);

相關文章