1
我有多個選擇選項。如果我選擇一個特定的select
元素,例如id="a"
我想將option
值設置爲0
。根據父級選擇元素的id屬性更改選擇選項的值
$('#form option:selected').each(function() {
var id = $(this).attr('id');
if(id == 'a') {
val = 0;
} else {
val = 10;
}
console.log(val);
});
我得到undefined
值。
'$( '#窗體選項:選擇')。VAL(函數(){返回this.id ==='a'?0:10});' – adeneo
你的'option'元素有'id'屬性嗎? https://jsfiddle.net/L8akrvsL/1/ –
@VictorLevin我想要得到什麼是ID'或'