js如何获取文本节点的值?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js如何获取文本节点的值?相关的知识,希望对你有一定的参考价值。

<textarea name="other" id="other" cols="50" rows="5" >无</textarea>
如何获取Textarea的文本值呢?
<div id="x"></div> ?

两种方法:
比如有个文本节点:<div id="test"><strong>this is value</strong></div>
1、通过document对象获取:
var obj=document.getElementById("test");
//非Mozilla浏览器:
obj.innerText;
2、其他的浏览器
obj.firstChild.nodeValue;
参考技术A <textarea name="other" id="other" cols="50" rows="5" >无</textarea>
<script>
alert(other.innerhtml);
alert(other.innerText);
alert(other.value);
</script>
这3个都可以,推荐用value本回答被提问者采纳

c++获取文本框的值

定义了一个变量,如何获取textbox1中值,在label中显示出来
单击button按钮,再在label中显示

CString str;
textBox1.GetWindowText(str);
label.SetWindowText(str);
基本原理就是上述三句,定义一个CString ,然后定义文本框变量textbox1,得到其值,然后定义label变量label,你可以起个别的名字,然后设置值显示就可以了。
这几个函数都是MFC封装的控件属性和操作。
参考技术A 在button单击响应函数中加入:
label->Caption = textbox1->Text;
参考技术B CString str = _T("");
GetDlgItem(IDC_textbox1)->GetWindowText(str);
GetDlgItem(IDC_label)->SetWindowText(str);

以上是关于js如何获取文本节点的值?的主要内容,如果未能解决你的问题,请参考以下文章

Cytoscape js在节点上单击时如何获取所有边缘(文本标签)

c++获取文本框的值

用JS怎样获取文本框的值

用JS怎样获取文本框的值

jquery如何获取span的文本?

eclipse如何创建文本框并获取它的信息