站內搜尋

Thursday, December 12, 2013

[jQuery] 如何取得下拉選單中( select )被選到的項目 ( option ) 的屬性值 (以 title 為例)

$("#my_select").on("change", function(){   alert($("option:selected", this).attr("title")); });
或是
$("#my_select").on("change", function(){   alert($(this).find("option:selected").attr("title")); });
PS:兩種語法作用完全相同,效能差別幾乎可以忽略,第二種語義較直觀。

No comments:

Post a Comment