如果您按住鼠標,是否可以分配清除輸入字段的函數?目前我有以下http://jsfiddle.net/e1kb6esm/6/如果你點擊一個字段,它會增加一個,但是我還需要做的是能夠清除該字段,如果它被錯誤點擊。我正在考慮與關於mousedown 5秒,清除輸入字段
if $this.mousedown(function(e) {
但如果我清除mousedown它也會清除點擊增加值呢?
代碼:
<input class="played" type="text" value="" /><br>
<input class="played" type="text" value="" /><br>
<input class="played" type="text" value="" /><br>
<input class="played" type="text" value="" /><br>
<input class="played" type="text" value="" />
$('.played').on('focus', function() {
var $this = $(this);
if ($this.val() == '') {
$this.val('1');
$this.blur();
} else {
var value = parseInt($this.val());
$this.val(value + 1);
$this.val();
$this.blur();
}
});
你是否已經看到了這一點? http://stackoverflow.com/questions/4961072/jquery-continuous-mousedown –