jQuery控制項取值,賦值

2021-06-08 14:54:52 字數 746 閱讀 6858

$("")是乙個jquery物件,而不是乙個dom element

value是dom element的屬性,jquery與之對應的是val

val() :獲得第乙個匹配元素的當前值。

val(val):設定第乙個匹配元素的值。

1.span,p,div:$("#id").html();       $("#id").html(val);

2.input:$("#id").val();         $("#id").val(val);

3.textarea:$("#id").val();       $("#id").val(val);

4.radio:

radio 賦值:

$(":radio[name='ra']").each(function(){

if(this.value==data)

$(this).attr("checked",true);

5.iframe的src:$("id").src+="&uid ="+ uid;

6.下拉列表select:$("#id").val();      

賦值方式1:  $("#id").val(val);

賦值方式3: 同時可以使用attr()方法來設定

例如:$('#id').attr("value",value);

select賦值方式3:

$("#action option[value='123']").attr("selected",true);

JQuery 取值賦值

input type text name textname id text id value 取值等等 function get form value 對表單的其他處理 控制表單元素 文字框,文字區域 text id attr value 清空內容 text id attr value test 填...

jquery 取值賦值

文字框操作 取值 text id attr value text id val input type text val 清除 text id attr value 賦值 text id attr value 123 單選框操作 取值 input type radio checked val inpu...

jquery取值賦值

a val 1 id為a的值就是1了 jquery中都這樣,賦值的時候作為引數傳給函式,和單純的js有區別,像 a html 1 a text 1 都是賦值 a html a text 都是取值,取html,取text文字 nput class required 查詢出所有input標籤,且clas...