jQuery/Javascript - 当按钮的值更改时如何触发事件?

发布于 2024-07-22 04:12:09 字数 306 浏览 1 评论 0原文

我正在开发一个 jQuery 插件,它本质上将设计某些元素的样式。 像 jqTransform 一样,我可以只替换该元素,但我选择将真实元素放置在屏幕之外并创建一个新的样式元素。 这允许触发真实元素的实际事件。 另外,如果文本框有 onclick 处理程序或 onchange 处理程序,jqTransform 将不会包含它,而这样,它将包含它。

这是我的问题。 假设用户有一个按钮。 随后,在应用程序中,用户决定更改按钮的值。 它将更改原始按钮的值,但不会更改样式按钮。 有什么方法可以连接元素,以便如果原始按钮的值发生更改,样式按钮的值也会更改?

I am working on a plugin for jQuery that will essentially style certain elements. Like jqTransform I could just replace the element but I chose to position the real element off screen and make a new element thats styled. This allows triggering the actual events of the real element. Also, if an onclick handler or onchange handler for a textbox is there, jqTransform will not include that whereas this way, it will include it.

Here is my problem. Say a user has a button. Later on in the app the user decides to change the value of the button. It will change the original button's value but not the styled button. Is there any way I can connect the elements so that if the original button's value is changed the styled button's value is changed as well?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

執念 2024-07-29 04:12:09

您可以使用 onpropertychanged 事件捕获对象上的任何属性更改。

$("#buttonid").bind('propertychange', function(e) {
    if (e.originalEvent.propertyName == "value") {
       // value is changed, handle it here      
    }
});

you can catch any property change on object using onpropertychanged event.

$("#buttonid").bind('propertychange', function(e) {
    if (e.originalEvent.propertyName == "value") {
       // value is changed, handle it here      
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文