当“类”发生时要检测的任何事件。控件的属性已更改
我有一个“div”控件,其中包含一些 id="myDiv" class="myClass" var var1=10;
在 JavaScript 中。根据用户操作,我将将此控件的类从“myClass”更改为“newClass”,因此当发生这种情况时,我想将 var1 的值更改为 20。
那么我如何识别 Class 中的更改?
I have a "div" control with some id="myDiv" class="myClass"
var var1=10;
in Javascript. Based on user action I will change the class for this control from "myClass" to "newClass" so when this has happened I want to change the value of var1 to 20.
So how would I recognize that change in Class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 3 个东西:
有一个 jQuery 插件可以实现此功能(页面上还有一个演示):
http://darcyclarke.me/开发/观看/
You'll have to use 3 things:
There is jQuery plugin which implements this (there is also a demo on the page):
http://darcyclarke.me/dev/watch/
您可以使用 onpropertychange(IE)和 DOMAttrModified (其他)
You may use onpropertychange(IE) and DOMAttrModified (others)