方法一:
绑定onclick事件=click():
<input name="test" onclick="$(this).click();" type="text" />
ie和谷歌下测试通过http://www.hainangy.com
方法二:
通用方法,修改源代码,把
}).click(function() {
// show select when clicking in a focused field
if ( hasFocus++ > 1 && !select.visible() ) {
onChange(0, true);
}
改成
}).click(function() {
// show select when clicking in a focused field
if ( ++hasFocus > 1 && !select.visible() ) {
onChange(0, true);
}