为什么jQuery.select()无法选择文本字段中的值

时间:2015-08-03 11:46:57

标签: jquery html

我尝试使用jQuery.Select函数选择表格中的文本字段值。但它不起作用。 这是jsFiddle: - https://jsfiddle.net/zkcxoyzL/3/

jQuery代码

$(function(){
   $("#acquisition_table").on("focus", "[type='text']", function () {
                $(this).select();
   });
});

看来,它会在几分之一秒内选择并自动取消选择。

1 个答案:

答案 0 :(得分:2)

$(function() { $("#acquisition_table").on("focus", "[type='text']", function () { var $this = $(this); $this.select(); // Work around Chrome's little problem $this.mouseup(function() { // Prevent further mouseup intervention $this.unbind("mouseup"); return false; }); }); });

取自https://stackoverflow.com/a/5797700/1139130