admin管理员组文章数量:1339470
I have a JavaScript input
object with type="text"
ing along with an onchange
event which is created by (related lines):
var id_box = document.createElement('input');
id_box.id = 'id_box';
id_box.type = 'text';
id_box.onchange = function()
{
alert("Changed!");
}
For changing this value
in this input
field I use:
var a = document.createElement('a');
a.innerHTML = "A";
a.onclick = function()
{
document.getElementById('id_box').value = 'A';
}
The onchange
event works only changing value by keyboard typing but not for changing value by above function. Is there any way to make this works?
Please take a look at this: /
I have a JavaScript input
object with type="text"
ing along with an onchange
event which is created by (related lines):
var id_box = document.createElement('input');
id_box.id = 'id_box';
id_box.type = 'text';
id_box.onchange = function()
{
alert("Changed!");
}
For changing this value
in this input
field I use:
var a = document.createElement('a');
a.innerHTML = "A";
a.onclick = function()
{
document.getElementById('id_box').value = 'A';
}
The onchange
event works only changing value by keyboard typing but not for changing value by above function. Is there any way to make this works?
Please take a look at this: http://jsfiddle/zCMdV/7/
Share Improve this question edited Jan 13, 2023 at 14:34 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jul 26, 2011 at 7:32 ProtocoleProtocole 1,74311 gold badges28 silver badges43 bronze badges 01 Answer
Reset to default 8What browser are you using?
I have made this example, which works for me... the subtle change is that I add the event to the input before I append it to the div element.
<div id="test"></div>
<script type="text/javascript">
var id_box = document.createElement('input');
id_box.type = 'text';
id_box.onchange = function()
{
alert("Changed!");
}
document.getElementById("test").appendChild(id_box);
</script>
See it in action on JS Fiddle: http://jsfiddle/Sohnee/zCMdV/
Update:
If you are going to automate the changing of the value, you can do the same to trigger the change event...
http://jsfiddle/Sohnee/zCMdV/10/
document.getElementById('id_box').onchange();
本文标签:
版权声明:本文标题:javascript - The "onchange" event does not work with "value" change in "text input& 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743585857a2506418.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论