createTextRange()的使用总结
2010年02月01日 星期一 17:21
<script language="javascript">
function test()
{
var rng=document .body . createTextRange();
alert(rng .text)
}
function test1()
{
var rng=document .body . createTextRange();
alert(rng .htmlText)
}
</script>
<input type="button" οnclick="test()" value="text">
<input type="button" οnclick="test1()" value="htmlText">
获取指定文本框中的选中的文字:只响应第一个文本框
<input id="inp1" type="text" value="1234567890">
<input id="inp2" type="text" value="9876543210">
<input type="button" οnclick="test()" value="确定">
<script language="javascript">
function test()
{
var o=document . getElementById(&#
function test()
{
var rng=document .body . createTextRange();
alert(rng .text)
}
function test1()
{
var rng=document .body . createTextRange();
alert(rng .htmlText)
}
</script>
<input type="button" οnclick="test()" value="text">
<input type="button" οnclick="test1()" value="htmlText">
获取指定文本框中的选中的文字:只响应第一个文本框
<input id="inp1" type="text" value="1234567890">
<input id="inp2" type="text" value="9876543210">
<input type="button" οnclick="test()" value="确定">
<script language="javascript">
function test()
{
var o=document . getElementById(&#