JS获取文本结点【转】
要求如下
如:<ahref="http://www.google.com">你好Google</a>
用js取出 你好Google
<html>
<head>
<scriptlanguage="javascript">
functiongetText(frm)
{
alert((frm.getElementsByTagName_r("a"))[0].innerText)
}
</script>
</head>
<body>
<formname="frmText">
<ahref="http://www.google.com">你好Google</a>
<inputtype="button" name="get" value="取出超联接的文本" onClick="getText(frmText)"/>
</form>
</body>
</html>
</html>