次のコードを作成しました:
(function ($) {
$(document).ready(function () {
$('#custom_coverage').keyup(function () {
this.value = this.value.replace(/[^0-9\.]/g, '');
});
});
}(jQuery));
と
<input id="custom_coverage" class="restorable" type="text" data-original-value="100" value="100" name="custom_coverage">
スクリプトは正常に動作していますが、Chrome では、キーボードの -> または <- を使用して入力フィールド内でカーソルを移動できません。
誰?