TEXTBOX:
var str =$("#txt").val();
$("#txt").val(Value);
//文字框,文字區域:
$("#text_id").attr("value",'');//清空內容
$("#text_id").attr( "value",'test');//填滿內容
LABLE:
var str =$("#lbl").text();
$( "#lbl").text(Value);
/*取得單選按鈕的值*/
var valradio =$("input[@type=radio][@checked] ").val();
/*取得一組名為(items)的radio被選取項目的值*/
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)//判斷是否已選取
單選組radio:
$("input[@type=radio]").attr("checked",'2');//設定value=2的項目為目前選取項
//下拉框select:
$("#select_id").attr("value",'test');//設定value=test的項目為目前選取項
$ ("testtest2").appendTo("#select_id")//新增下拉框的option
$("#select_id").empty();//清空下拉方塊
取得一組名為(items)的radio被選取項目的值
var item =$('input[@name=items][@checked]').val();//若未被選中則val() = undefined
取得select被選取項目的文字
var item =$("select[@name=items] option[@selected]").text();
select下拉框的第二個元素為目前選取值
$('#select_id')[0].selectedIndex= 1;
radio單選組的第二個元素為目前選取值
$('input[@name=items]').get(1).checked= true;
//重設表單
$("form").each(function(){
.reset();
});
以下是設定img的路徑
$("#img1").attr("src","Imges/test.jpg");