如何用jQueryJS监听输入框实时变化并处理长尾词查询?
- 内容介绍
- 文章标签
- 相关推荐
本文共计657个文字,预计阅读时间需要3分钟。
输入事件:+onchange+:1、仅在input失去焦点时触发;2、在输入框内容变化时不会触发change事件,当鼠标在其他地方点一下才会触发;3、onchange事件所有主流浏览器都支持。
input事件:
onchange:
1、要在 input 失去焦点的时候才会触发;
2、在输入框内容变化的时候不会触发change,当鼠标在其他地方点一下才会触发;
3、onchange event 所有主要浏览器都支持;
4、onchange 属性可以使用于:<input>, <select>, 和 <textarea>。
<script> function change(){ var x=document.getElementById("password"); x.value=x.value.toUpperCase();<br data-filtered="filtered"> console.log("出发了") } </script> </head> <body> 输入你的密码: <input type="text" id="password" onchange="change()"> </body>
oninput:
1、在用户输入时触发,它是在元素值发生变化时立即触发;
2、该事件在 <input> 或 <textarea> 元素的值发生改变时触发。
3、缺陷:从脚本中修改值不会触发事件。从浏览器下拉提示框里选取值时不会触发。IE9 以下不支持,所以IE9以下可用onpropertychange 事件代替。
JS: <input type="text" id="password" oninput="change()">
jQuery: $("#password").on('input propertychange', change);
onpropertychange:
1、会实时触发,会在元素的属性改变时就触发事件。当元素disable=true时不会触发
2、缺陷:只在IE 下支持,其他浏览器不支持,用oninput来解决。
<input type="text" id="password" oninput="onpropertychange()">
jQuery:
<!DOCTYPE html> <html> <head> <meta img.558idc.com/uploadfile/allimg/210405/22252A324-0.jpg"></script> </head> <body> <input type="text" id="password" autoComplete='off'> <script type="text/javascript"> $(function(){ $('#password').bind('input propertychange', function() { <br data-filtered="filtered"> console.log('在实时触发!!!') $('#result').html($(this).val().length); <br data-filtered="filtered"> $(this).val().length != 0 ? $("#login").css("background-color", "#086AC1") : $("#login").css("background-color", "#529DE0") }); }) </script> </body> </html>
JavaScript;
<script type="text/javascript"> // Firefox, Google Chrome, Opera, Safari, Internet Explorer from version 9 function OnInput (event) { alert ("The new content: " + event.target.value); } // Internet Explorer function OnPropChanged (event) { if (event.propertyName.toLowerCase () == "value") { alert ("The new content: " + event.srcElement.value); } } </script> <input type="text" oninput="OnInput (event)" onpropertychange="OnPropChanged (event)" value="Text field" />
以上就是本次介绍的全部相关知识点,感谢大家的学习和对易盾网络的支持。
本文共计657个文字,预计阅读时间需要3分钟。
输入事件:+onchange+:1、仅在input失去焦点时触发;2、在输入框内容变化时不会触发change事件,当鼠标在其他地方点一下才会触发;3、onchange事件所有主流浏览器都支持。
input事件:
onchange:
1、要在 input 失去焦点的时候才会触发;
2、在输入框内容变化的时候不会触发change,当鼠标在其他地方点一下才会触发;
3、onchange event 所有主要浏览器都支持;
4、onchange 属性可以使用于:<input>, <select>, 和 <textarea>。
<script> function change(){ var x=document.getElementById("password"); x.value=x.value.toUpperCase();<br data-filtered="filtered"> console.log("出发了") } </script> </head> <body> 输入你的密码: <input type="text" id="password" onchange="change()"> </body>
oninput:
1、在用户输入时触发,它是在元素值发生变化时立即触发;
2、该事件在 <input> 或 <textarea> 元素的值发生改变时触发。
3、缺陷:从脚本中修改值不会触发事件。从浏览器下拉提示框里选取值时不会触发。IE9 以下不支持,所以IE9以下可用onpropertychange 事件代替。
JS: <input type="text" id="password" oninput="change()">
jQuery: $("#password").on('input propertychange', change);
onpropertychange:
1、会实时触发,会在元素的属性改变时就触发事件。当元素disable=true时不会触发
2、缺陷:只在IE 下支持,其他浏览器不支持,用oninput来解决。
<input type="text" id="password" oninput="onpropertychange()">
jQuery:
<!DOCTYPE html> <html> <head> <meta img.558idc.com/uploadfile/allimg/210405/22252A324-0.jpg"></script> </head> <body> <input type="text" id="password" autoComplete='off'> <script type="text/javascript"> $(function(){ $('#password').bind('input propertychange', function() { <br data-filtered="filtered"> console.log('在实时触发!!!') $('#result').html($(this).val().length); <br data-filtered="filtered"> $(this).val().length != 0 ? $("#login").css("background-color", "#086AC1") : $("#login").css("background-color", "#529DE0") }); }) </script> </body> </html>
JavaScript;
<script type="text/javascript"> // Firefox, Google Chrome, Opera, Safari, Internet Explorer from version 9 function OnInput (event) { alert ("The new content: " + event.target.value); } // Internet Explorer function OnPropChanged (event) { if (event.propertyName.toLowerCase () == "value") { alert ("The new content: " + event.srcElement.value); } } </script> <input type="text" oninput="OnInput (event)" onpropertychange="OnPropChanged (event)" value="Text field" />
以上就是本次介绍的全部相关知识点,感谢大家的学习和对易盾网络的支持。

