我尝试使用jQuery.Select函数选择表格中的文本字段值。但它不起作用。 这是jsFiddle: - https://jsfiddle.net/zkcxoyzL/3/
jQuery代码:
$(function(){
$("#acquisition_table").on("focus", "[type='text']", function () {
$(this).select();
});
});
看来,它会在几分之一秒内选择并自动取消选择。
答案 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;
});
});
});