【发布时间】:2019-05-16 09:02:04
【问题描述】:
【问题讨论】:
-
不,您必须构建自己的输入界面(输入,加上上面的 2 个箭头,作为具有单独 ID 的单个组件等)。
-
这是我的想法,但不知何故,我希望事件对象中有一个未知属性可以给我这个东西:(
标签: javascript html events onchange
【问题讨论】:
标签: javascript html events onchange
onchange 事件只会在来自 UI 和上下键输入的每个输入处触发。
否则,我们必须失去焦点,或者按回车触发这个事件。
所以我们可以检查我们是否仍然是 activeElement 并因此从 UI 中触发,或者不是来自于打字。
除了 Enter 键...
let enter_down = false;
inp.addEventListener('change', e => {
if(enter_down || inp !== document.activeElement) {
console.log('typing');
}
else {
console.log('arrows');
}
});
inp.addEventListener('keydown', e => {
if(e.key === 'Enter') {
enter_down = true;
}
});
inp.addEventListener('keyup', e => {
if(e.key === 'Enter') {
enter_down = false;
}
});
<input type="number" id="inp">
【讨论】:
回调中的Event 对象不会为您提供此信息。但是你可以试试这个技巧:
const onChange = function(e) {
if ($(this).data('_oldval') !== this.value) {
console.log('from arrows')
}
$(this).removeData('_oldval');
};
const onKeyUp = function(e) {
if (e.which >= 37 && e.which <= 40) {
return onChange(e);
}
$(this).data('_oldval', this.value);
console.log('from text field');
};
$('input').on('change', onChange);
$('input').on('keyup', onKeyUp);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<input type="number">
没有 jQuery 也一样:
const onChange = function(e) {
if (this.dataset) {
if (this.dataset._oldval !== this.value) {
console.log('from arrows')
}
delete this.dataset._oldval;
}
};
const onKeyUp = function(e) {
if (e.which >= 37 && e.which <= 40) {
return onChange(e);
}
this.dataset._oldval = this.value;
console.log('from text field');
};
document.querySelector('input').addEventListener('change', onChange);
document.querySelector('input').addEventListener('keyup', onKeyUp);
<input type="number">
【讨论】:
你可以用 vanillaJavascript 做这样的事情:
//Define a flag to save if the user used the keyboard on the input or the right arrows
let keyUpFlag = false;
//each time a change on the input is made by using the keyboard, the keyUpFlag is set to true
function onKeyUp(event) {
keyUpFlag = true;
}
//bind this callback funtion to the on change event of the input
function onChange(event) {
// if the this flag is set to true, means that the user changed the input by using the keyboard, so by changing the text.
if (keyUpFlag) {
console.log("On change from text!");
} else {
//If not, means that used the the right arrows to change the value
console.log("On change from the arrows!");
}
//sets again the flat to false in order to reset the on key value state
keyUpFlag = false;
}
<input type="number" onchange="onChange(event)" onkeyup="onKeyUp(event)">
【讨论】: