發表文章

目前顯示的是有「jQuery」標籤的文章

【jQuery】select

// 取得被選擇項目 $("#select").find(":selected").text(); $("#select").find(":selected").val(); // 增加項目 $("#select").append($("< option> ").attr("value", "值").text("文字")); // 刪除項目 $("#select").find(":selected").remove(); // 取得被選擇項目index $("#select").find(":selected").index(); // 設定項目被選擇 $("#select").eq(key).selected = true;

[jQuery]AJAX

$.ajax({                 url: url,                 data: $('#form').serialize(),                 type: 'POST',                 success: function(response){                     alert(response);                 } });

[jQuery] get and set radio, checkbox, select

//獲取一組radio被選中項的值 var item = $('input[@name=items][@checked]').val(); //獲取select被選中項的文本 var item = $("select[@name=items] option[@selected]").text(); //select下拉框的第二個元素為當前選中值 $('#select_id')[0].selectedIndex = 1; //radio單選組的第二個元素為當前選中值 $('input[@name=items]').get(1).checked = true; 獲取值: