2012年8月7日

Chrome下input输入框内容无法选中的解决方法

摘要: $("input").click(function(e){ $(this).select();});上述方法在firefox和IE下都正常(注意,不要用focus方法,有时也不正常),唯独在chrome中有时成功有时失败。解决方法如下:阻止chrome自己的mouseup事件即可。$("input").mouseup(function(e){ if(window.navigator.userAgent.indexOf("Chrome")!=-1){ var event = e||window.event; event.preventD 阅读全文

posted @ 2012-08-07 13:41 萌二&威比 阅读(1420) 评论(0) 推荐(0) 编辑

导航