Jquery給基本控制項的取值、賦值TEXTBOX: var str = $('#txt').val(); $('#txt').val("Set Lbl Value"); //文字方塊,文字區域: $("#text_id").attr("value",'');//清空內容$("#text_id").attr("value",'test');// 填滿內容
TEXTBOX:
$("#text_id").attr("value",'');//清空內容
$("#text_id").attr(" value",'test');// 填充內容
var item = $('input[@name=items][@checked]'). val();
var checkboxval = $("#checkbox_id").attr("value");
var selectval = $('#select_id').val();
//多選框checkbox:
$("#chk_id").attr("checked",'');//使其未勾選
$("#chk_id").attr("checked",true) ;// 勾選
if($("#chk_id").attr('checked')==true) //判斷是否已選取