html中怎样给textarea赋值?

html中怎样给textarea赋值?,第1张

html中给textarea赋值比较常见的方式:1.html中直接书写;2.通过JS动态修改;

第一种: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>

比较常见的两种方式:1.html中直接书写;2.通过JS动态修改;

<html>

<body>

<textarea id="textarea">在这里直接书写,即为赋值</textarea>

</body>

</html>

<script type="text/javascript">

var tObj = document.getElementById('textarea')

tObj.value = '也可以通过JS赋值'

</script>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6190127.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-17
下一篇 2023-03-17

发表评论

登录后才能评论

评论列表(0条)

保存