jQuery .delay()後執行指定function jquery after delay call function
function test(){
alert(‘hello’);
}
$(‘body’).delay(2000).queue(test);[……]
jQuery .delay()後執行指定function jquery after delay call function
function test(){
alert(‘hello’);
}
$(‘body’).delay(2000).queue(test);[……]
$(“input[name=’sex’][type=’radio’][value=’1′]”).attr(“checked”,”); //設定不打勾
$(“input[name=’sex’][type=’radio’][value=’0′]”).attr(“checked”,true); //設定打勾[……]
選取器,選取標籤多屬性,如type&name
可用於選取姓別的radiobox
if(sex==1){
$(“input[name=’sex’][type=’radio’][value=’1′]”).attr(“checked”,true);
}else{
$(“input[name=’sex’][type=’radio’][value=’0′]”).attr(“checked”,true);
}
相關網址
http://stackoverflow.com/questions/3221094/target-input-by-type-and-name-selector[……]
CSS方法
a{
outline: none; /* for Firefox */
hlbr:expression(this.onFocus=this.blur()); /* for IE */
}
jQuery方法
<script>
jQuery(function($){
$("a").focus(function(){
$(this).blur();
});
});
</script>
[……]