用jquery怎么监听按钮的值变化?
如:
<input id="check-button" name="check-button" type="button" value="0" />
怎样用jquery监听id为“check-button”的值变化,如果有变化,则将id为"test"的div值添加上内容“值变了”
jquery node.js JavaScript 前端开发 网页设计
老司机开车啦
9 years, 11 months ago
Answers
https://developer.mozilla.org/zh-CN/docs/Web/API/MutationObserver
不考虑兼容性的话,可以看下这个。
另外可以用的方案是:
如果这个button的值的更改是可以由你自己控制的话,可以自定义一个事件,
然后写个更改button的值的方法,
在里面修改button的值的同时触发这个事件。
o华胥亡魂o
answered 9 years, 11 months ago