JQuery給textarea取值和賦值

bestcxx發表於2016-02-24

JQuery給textarea取值和賦值

取值

var qrcodefortemcontent=$("#qrcodefortemcontent").val();

賦值

$("#qrcodefortemcontent").val(“123”); 


JQuery給label

取值

next_openid=$("#next_openid2").text();

$("#hasnext2").text('YES');

$("#hasnext2").text('YES');


JQuery給input

取值

 qrcodeforeverflag=$("#qrcodeforeverflag").val();

賦值

$("#qrcodeforeverflag").val(“123”);


在html標籤中使用‘’或者“”有時候是有差異的,使用“”保險些,但是在存在轉義的時候需要用''

相關文章