使文本在键入时显示 - 为什么这在 Internet Explorer 中不起作用
我有一个表格。在此表单上有一个附加了 javascript 的输入,因此输入到输入中的任何内容都会显示在页面其他位置的 div 中。
我有两种解决方案来做到这一点。一个使用 keyup 并适用于所有浏览器,另一个使用 onpropertychange (看起来更好,但似乎不适用于 Internet Explorer 7 和 8(适用于 9)。
代码如下:
$('#CampaignTitle').keyup(function() {
$('#titleBar').text(this.value);
});
为什么
$('#CampaignTitle').bind("onpropertychange input", function() {
$('#titleBar').text(this.value);
});
第二个不适用在 ie7 和 ie8 上工作吗
?我是 Javascript 的新手,
我正在使用虚拟机来测试我以前从未做过的不同版本,但其他一切都可以正常工作。不是那个吗?
I have a form. On this form there's an input which has javascript attached so that whatever's typed into the input appears in a div elsewhere on the page.
I have two solutions for doing this. One uses keyup and works on all browsers, the other uses onpropertychange (which looks better but doesn't seem to work on Internet Explorer 7 & 8 (works on 9).
Here's the codes:
$('#CampaignTitle').keyup(function() {
$('#titleBar').text(this.value);
});
and
$('#CampaignTitle').bind("onpropertychange input", function() {
$('#titleBar').text(this.value);
});
How come the 2nd one doesn't work on ie7 and ie8?
Is it something to do with jQuery? I'm new at Javascript
I'm using virtual machines to test the different versions which I've never done before but everything else works so surely it's not that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅使用“propertychange”,不带前导“on”。
它可以在 IE9 中运行,因为 IE9 支持
input
事件Use only "propertychange" , without the leading "on".
It works in IE9 because IE9 supports the
input
-event您是否尝试使用
.change()
?Did you try to use
.change()
?