2012-05-03 50 views

回答

2

解決方案

您可以通過使用用戶選擇的規則在CSS中,加入這個類來一次就覆蓋轉向背景要素做到這一點:

CSS:

.unselectable { 
-moz-user-select: -moz-none; 
    -khtml-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none; 
} 

用jquery添加類:

$('#backgrounddiv').addClass('unselectable'); 

的jsfiddle例如:

參考文獻:

0
$(document).ready(function() { 
    $('#search_name').on('keyup', 
    function() { 
     search_name = $(this).val(); 
     $("#names li:contains('" + search_name + "')").addClass('highlight').siblings().removeClass('highlight'); 
    }); 
}); 
相關問題