觸發 select 事件
語法:$(selector).select();
例一:
$("input").select(function(){
});
例二:
$("input[type=text]").on(‘focus‘, function() {
$(this).mouseup(function(e){ e.preventDefault(); });//取消 on focus 觸發後的動作 $(this).css(‘background-color’,'#FFFFFF’).select();
}).on(‘blur‘, function() {
$(this).css(‘background-color’,'#E8E8E8′);
});