我需要帮助检测颜色选择器对“img”标签上的背景颜色内联的更改事件。
例如,我有这个代码:
<span class="ui-button-text">
<img id="cp-background" src="transparent.png" style="background-color: rgb(100, 100, 90);"></img>
</span>
我需要检测 style="backgroung-color" 是否随 Jquery 更改。
我已经尝试过这段代码,但我没有成功:
$("#ok-cp-background").data('bgcolor', $this.css('background-color')).change(function(){
alert("Changed");
});
谁能帮帮我吗?
谢谢你。