在jQuery中,如果我有一個id爲「parentId」的html選擇,如何選擇一個我知道選項值的選項?如何在HTML選擇中選擇一個我知道該值的選項?
這裏是我的代碼:
function selectParentId(parentId)
{
$('#parentId').find('option').each(function(index,element){
if(element.value == parentId)
element.prop('selected', true);
});
}
如何需要改變上面的代碼?
複製 - > http://stackoverflow.com/questions/13343566/set-select-option-selected-by-value – adeneo