我正在使用ajax在div #div_it_SelectCatLvl2
中添加#it_SelectCatLvl2
元素,並且我看到當我更改值#it_SelectCatLvl2
時,該腳本不起作用。將頁面加載後添加的元素添加更改事件
代碼:
$('#it_SelectCatLvl2').change(function() {
if($(this).val() > 0){
$('#it_submit').removeAttr("disabled");
}else{
$('#it_submit').attr("disabled", "disabled");
}
});
<div id="div_it_SelectCatLvl2">
<select class="n_SelectPath" style="" name="it_SelectCatLvl2" id="it_SelectCatLvl2">
<option value="0">Change</option>
<option value="1">One</option>
</select>
</div>
你的問題不清楚。你能不能展示更多的代碼,包括你正在用'.post()'做什麼或重寫這個問題? –
@iWizardPro對不起,我不知道如何問這個,但我已經得到答案。謝謝。 –