如何替换选中的文字

[转载]  http://onlyaa.com/html/common/20080512/2043.html


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>替换选中的文字</title>
</head>
<body>
<form id="mainForm" name="" method="get">
<input type="text" size="20" name="userName" value="admin" />
<input type="button" value="请选中文本框中的文字,然后点这里替换" onclick="javascript:Update();" />
</form>
<script type="text/javascript" language="javascript">
<!--
var mainForm = document.getElementById("mainForm");
function Update()
{
var r = document.selection.createRange();
r.text = "中国人";
}
-->
</script>
</body>
</html>

posted on 2008-06-04 20:09  鱼跃于渊  阅读(502)  评论(0编辑  收藏  举报

导航