我的表单上有 4 个文本框,其中 3 个每次更改最后一个文本框的值
分配新值。
我正在尝试创建一个事件,该事件将在每次最后一个文本框值更改时触发
不仅在文本框离开焦点或按下键时。
我试过这段代码,但它不起作用
<input class='textbox' type='text'/>
<input class='textbox' type='text'/>
<input class='textbox' type='text'/>
<input id='hex_color_textbox' class='textbox' type='text'/>
$("#hex_color_textbox").on('change keyup paste', function()
{
});
有任何想法吗?
谢谢你