2008年6月13日 星期五

[jquery] 可以取得option 的多種數值.

以往html 的 option 都只能取得value.
但是利用jquery 可以取的多個我設定得數值喔.

$('#test1').change(function(){
$('#test1 option:selected').val();
$('#test1 option:selected').attr("url");
$("#test1 option").remove(); //這可以移除所有option 太屌了.
$("#test1").append("<option>loading...</option>"); //這可以增加option
});

-------------html ---------------
<select id="test1".....
<option value="xxx" url="http:\\...">123 </option>

呵~ 真棒!!

【下列文章您可能也有興趣】

沒有留言: