鉴于以下HTML,我要在<select>
中选择id= "g+anything"
<tr id='g2'>
。
<table>
<tr id='g1><td>
<select id="gm">
<option value="1"></option>
<option value="2"></option>
</select>
</td><td>
<select id="gg">
<option value="1"></option>
<option value="2"></option>
</select>
</td>
<tr id='g2><td>
<select id="gm">
<option value="1"></option>
<option value="2"></option>
</select>
</td><td>
<select id="gg">
<option value="1"></option>
<option value="2"></option>
</select>
</td>
<table>
<button id="button" ></button>
这是我的JQuery代码:
$( "#button" ).click(function() {
$('tr#g2 select').css('pointer-events: none');
});
更新:抱歉错误,这是我网站的一小部分。 我想调整可读性。
答案 0 :(得分:1)
您正在编写css函数错误。请尝试以下方法:
$( "#button" ).click(function() {
$('tr#g2 select').css('pointer-events', 'none');
});