-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
- 使用原生的:
function onInput(event) {
console.log(event.target.value)
}
//兼容 ie
function onPropChange(event) {
if (event.propertyName.toLowerCase () == "value") {
console.log(event.srcElement.value);
}
}
//html 里面
<input type="text" oninput="onInput(event)" onpropertychange="onPropchange(event)" />
- 使用 jQuery:
$('.wrap').bind('input propertychange', function(){
console.log('1111');
})
Metadata
Metadata
Assignees
Labels
No labels