日期:2014-05-16 浏览次数:20347 次
$(document).reade(function(){
$(a).click(....................)
});
$(document).ready(function(){
$("a").on('click",function(){
//something to be executed
});
});
$(document).ready(function(){
$(document).on("click","a",function(){
//something to be executed
});
});