jquery autocomplete

阅读更多

2
3     AutoComplate
4    
5    
6    
7    
16
17
18    

19    

20        
21        
22    

23    

24
25


bind("input", function() {  
     // @hack by liqt:support for inputing  chinese characters  in firefox  
     onChange(0, true);  
}); 

改为
.bind("unautocomplete", function() {  
        select.unbind();  
        $input.unbind();  
        $(input.form).unbind(".autocomplete")
    }).bind("input", function() {  
                                                // support for inputing  chinese characters  in firefox  
                                                onChange(0, true);  
                                                }); 

你可能感兴趣的:(jquery,firefox)