span的取值与赋值 JS JQuery

Posted dyhao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了span的取值与赋值 JS JQuery相关的知识,希望对你有一定的参考价值。

html代码

<span id="span_id">span的文本</span>

1、span的取值:
js取<span>的值:document.getElementById(‘span_id‘).innerText。
jquery取<span>的值,是$("#span_noticesg").html();
 
2、span的赋值:

JS赋值:document.getElementById(‘span_id‘).innerText="span的新文本";
JQuery赋值:$(‘#span_id‘).html("span的新文本");


以上是关于span的取值与赋值 JS JQuery的主要内容,如果未能解决你的问题,请参考以下文章

jquery给div,Span,赋值取值

jquery怎么给span赋值

jquery如何判断DIV宽度并赋值?

使用jquery怎么根据ID给元素赋值

jquery easyui js赋值后, 但页面不显示, 怎么刷新显示?

HTML JS 取值和赋值