14

ブラウザ:Google Chrome V19.0.1084.52

255以下の数値である必要があるテキストボックスがあります。キーダウン時に、この値が255以上であるかどうかを確認します。そうでない場合は、イベントを防止します。

コンソールでは、イベントをconsole.logすると、値が表示されるのでevent.srcElement.valueが表示されます。つまり、12 => 123から、console.logだけの場合、event.srcElement.valueだけが入力として表示され、になります。

Console.logは次々に発生し、その間に何も発生せず、一時停止もありません。

キーダウン時にテキストボックスの新しい値がどのようになるかを確認するにはどうすればよいですか。また、console.logが異なる結果を返すのはなぜですか。

これが私のコードです:

function inputNumeric(event,max) {

    console.log (event);
    console.log ('event.originalEvent.srcElement.value: '+event.originalEvent.srcElement.value);
    console.log ('event.srcElement.value: '+event.srcElement.value);

}

$("#rs485addr").keydown(function(event) {
    inputNumeric(event);
});

Console.log:

event.originalEvent.srcElement.value: 12
event.srcElement.value: 12

event.srcElement:

accept: ""
accessKey: ""
align: ""
alt: ""
attributes: NamedNodeMap
autocomplete: ""
autofocus: false
baseURI: "http://10.50.50.60/controller/?bid=10"
checked: false
childElementCount: 0
childNodes: NodeList[0]
children: HTMLCollection[0]
classList: DOMTokenList
className: "width-60"
clientHeight: 18
clientLeft: 2
clientTop: 2
clientWidth: 62
contentEditable: "inherit"
dataset: DOMStringMap
defaultChecked: false
defaultValue: "1"
dir: ""
dirName: ""
disabled: false
draggable: false
files: null
firstChild: null
firstElementChild: null
form: null
formAction: ""
formEnctype: "application/x-www-form-urlencoded"
formMethod: "get"
formNoValidate: false
formTarget: ""
hidden: false
id: "rs485addr"
incremental: false
indeterminate: false
innerHTML: ""
innerText: ""
isContentEditable: false
jQuery17102950612970162183: 22
labels: NodeList[1]
lang: ""
lastChild: null
lastElementChild: null
localName: "input"
max: ""
maxLength: 3
min: ""
multiple: false
name: ""
namespaceURI: "http://www.w3.org/1999/xhtml"
nextElementSibling: null
nextSibling: Text
nodeName: "INPUT"
nodeType: 1
nodeValue: null
offsetHeight: 22
offsetLeft: 183
offsetParent: HTMLBodyElement
offsetTop: 365
offsetWidth: 66
onabort: null
onbeforecopy: null
onbeforecut: null
onbeforepaste: null
onblur: null
onchange: null
onclick: null
oncontextmenu: null
oncopy: null
oncut: null
ondblclick: null
ondrag: null
ondragend: null
ondragenter: null
ondragleave: null
ondragover: null
ondragstart: null
ondrop: null
onerror: null
onfocus: null
oninput: null
oninvalid: null
onkeydown: null
onkeypress: null
onkeyup: null
onload: null
onmousedown: null
onmousemove: null
onmouseout: null
onmouseover: null
onmouseup: null
onmousewheel: null
onpaste: null
onreset: null
onscroll: null
onsearch: null
onselect: null
onselectstart: null
onsubmit: null
onwebkitfullscreenchange: null
onwebkitfullscreenerror: null
onwebkitspeechchange: null
outerHTML: "<input class="width-60" id="rs485addr" maxlength="3" type="textbox" value="1">"
outerText: ""
ownerDocument: HTMLDocument
parentElement: HTMLSpanElement
parentNode: HTMLSpanElement
pattern: ""
placeholder: ""
prefix: null
previousElementSibling: HTMLLabelElement
previousSibling: Text
readOnly: false
required: false
scrollHeight: 16
scrollLeft: 0
scrollTop: 0
scrollWidth: 60
selectionDirection: "forward"
selectionEnd: 3
selectionStart: 3
size: 20
spellcheck: true
src: ""
step: ""
style: CSSStyleDeclaration
tabIndex: 0
tagName: "INPUT"
textContent: ""
title: ""
translate: true
type: "text"
useMap: ""
validationMessage: ""
validity: ValidityState
value: "123"
valueAsDate: null
valueAsNumber: NaN
webkitGrammar: false
webkitRegionOverflow: "undefined"
webkitSpeech: false
webkitdirectory: false
webkitdropzone: ""
willValidate: true
4

6 に答える 6

34

それが役立つかどうかはわかりませんが、イベントリスナーで同様の状況に対処しなければならなかったときsetTimeout()、値などをチェックする主な機能を配置する 1 ミリ秒のタイムアウトを使用しました。

これは、keydownイベントが発生したときに、入力フィールドに新しいデータがまだ入力されていないためです。

簡単な jQuery の例:

$('#input').on('keydown', function(e) {
  var field = $(this);
  var prevValue = field.val();
  setTimeout(function() {
    // check if new value is more or equal to 255
    if (field.val() >= 255) {
      // fill with previous value
      field.val(prevValue);
    }

  }, 1);
});

アップデート

最新のブラウザでは「input」イベントを使用してください。

var prevValue = 0;
$('#input').on('input', function(e) {
  var field = $(this);
  // check if new value is more or equal to 255
  if (field.val() >= 255) {
    // fill with previous value
    field.val(prevValue);
  } else {
    // If value is lower than 255 set it in prev value.
    prevValue = field.val();
  }
});
于 2012-06-06T08:58:01.460 に答える
13

keydownbutは使用しないでくださいkeypress。次に、入力する文字の実際の文字コードを受け取ります。

イベント後の入力ボックスのキープレス、キーダウン、キーアップ値http://www.quirksmode.org/dom/events/keys.html、特にhttp://www.quirksmode.org/js/keys.htmlを参照してください。

inputElement.addEventListener("keypress", function(e) {
     var curval = e.srcElement.value;
     var newchar = String.fromCharCode(e.charCode || e.keyCode);
     if (/* condition */)
         e.preventDefault();
}, false);

何かを入力した後に入力値を取得したいだけの場合は、keyupイベントを使用する必要があります。

于 2012-06-06T09:24:44.943 に答える
0

私が思いつくことができる唯一のことは、コンソールに出力されたsrcElementオブジェクトが、キーダウンイベントの後でもイベントオブジェクトにリンクされているため、コンソール内のオブジェクトがすでに12から123に更新されている場合でもコンソール。

event.srcElement.value の直接出力では発生しません。これはリテラル値であり、参照されずにログにコピーされるためです...

あなたが本当に速いなら、コンソールで12から123に変わるのを見ることができるかどうかを確認できます;-)

于 2012-06-06T09:12:58.887 に答える
0

ここに @Bergi のコメントを追加して、テキストの選択とキャレットの位置を含めるには、次のようにします。

inputElement.addEventListener("keypress", (event) => {
    let curval = event.srcElement.value;
    let newchar = String.fromCharCode(event.charCode || event.keyCode);
    let curval_arr = curval.split("");
    curval_arr.splice(event.target.selectionStart, (event.target.selectionEnd - event.target.selectionStart), newchar);
    let newval = curval_arr.join("");

    //TODO: your logic here with "newval" containing the value to be.
    //console.log(curval, newchar, newval);
    //event.preventDefault();
}, false);
于 2019-03-17T19:02:24.877 に答える