jQueryUIを使用して範囲スライダーを作成しています。プラグインは、範囲値を表示するためにhtmlにテキスト入力を作成します。問題は、テキスト領域が編集可能でなくても、タッチスクリーンデバイスで選択可能であるということです。
テキスト入力の選択を停止するにはどうすればよいですか?私は次のCSSを試しました:
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
そして次のjQuery:
$("#amount, #amount2").mousedown(function (evt) {
evt.stopImmediatePropagation();
return false;
});
$("#amount, #amount2").disableSelection();