站內搜尋

Friday, June 6, 2014

[jQuery] 下拉選單 select 如何用 $(this) 去抓到選擇的 option 的 title 值?

$("select").on("change", function() {
  alert($("option:selected", this).attr("title"));
}

或是

$("select").on("change", function() {
  alert($(this).find('option:selected').attr("title"));
}

PS:
兩種語法作用完全相同,效能差別幾乎可以忽略,第二種語義較直觀。

No comments:

Post a Comment