使文本在键入时显示 - 为什么这在 Internet Explorer 中不起作用

发布于 2024-12-11 02:04:58 字数 558 浏览 0 评论 0原文

我有一个表格。在此表单上有一个附加了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烂人 2024-12-18 02:04:58

仅使用“propertychange”,不带前导“on”。

它可以在 IE9 中运行,因为 IE9 支持 input 事件

Use only "propertychange" , without the leading "on".

It works in IE9 because IE9 supports the input-event

蘸点软妹酱 2024-12-18 02:04:58

您是否尝试使用 .change()

Did you try to use .change() ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文