通过下拉列表更改复选框颜色

时间:2013-03-29 14:23:56

标签: javascript html drop-down-menu

我有一个下拉式HTML代码。我需要在下拉列表上定位一个click事件,如果按某个值,某些复选框的颜色应该会改变。

 <select>
        <option value="calculate">calculate</option>
        <option value="identification">identification</option>
        <option value="longInputs">longInputs</option>
</select>

我想知道如何针对下拉列表中的值定位点击事件。 例如:如果某人点击了标识行,则某些复选框会变为红色。

我一直在搜索,但找不到怎么做。希望得到一些帮助

谢谢!

1 个答案:

答案 0 :(得分:1)

jQuery在这里将成为你的朋友,你可以使用更改事件

$('.target').change(function() {
  alert('Handler for .change() called.');
});