第一种:JQuery给textarea取值和赋值:
1、取值
var
qrcodefortemcontent=$("#qrcodefortemcontent").val()。
2、赋值
$("#qrcodefortemcontent").val(“123”)。
第二种:JQuery给label的取值和赋值
1、取值
next_openid=$("#next_openid2").text()。
2、赋值
$("#hasnext2").text('YES')。
第三种:JQuery给input的取值和赋值
1、取值
qrcodeforeverflag=$("#qrcodeforeverflag").val()。
2、赋值
$("#qrcodeforeverflag").val(“123”)。
注意:
在HTML中给textArea赋值
<xmp><textarea>初始值</textarea></xmp>
而不可以用<xmp><textarea
value="初始值"></textarea></xmp>
可以使用:比如
a = (c <0 )? 1 : 2
(c <0 )? 1 : 2这个才是三元式。
如果c小于0也就是c<0为true,则整个三元式等于1,所以赋值给a等于1.
反之为false,则整个三元式等于2,所以赋值给a等于2
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)