asp中网页内容复制到文本框中的问题
在网上找了一段代码,可以将网页内容复制到文本框中,但点页面其他地方,文本框的内容双没有了,如何使复制后点网页其他地方时文本框内容依然存在.以下是代码,求高手帮修改下.<h...
在网上找了一段代码,可以将网页内容复制到文本框中,但点页面其他地方,文本框的内容双没有了,如何使复制后点网页其他地方时文本框内容依然存在.以下是代码,求高手帮修改下.
<html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<meta name="keywords" content="选中文字出现在文本框中" />
<meta name="description" content="选中文字出现在文本框中" />
<title>选中文字出现在文本框中</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function getActiveText(e) {
text = (document.all) ? document.selection.createRange().text : document.getSelection();
document.theform.text.value = text;
return true;
}
document.onmouseup = getActiveText;
if (!document.all) document.captureEvents(Event.MOUSEUP);
// End -->
</script>
</head>
<body>
此处假设需复制的文字内容<hr>
<form name=theform>
<textarea rows="9" name="text" cols="114"></textarea>
</form>
</body>
</html> 展开
<html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<meta name="keywords" content="选中文字出现在文本框中" />
<meta name="description" content="选中文字出现在文本框中" />
<title>选中文字出现在文本框中</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function getActiveText(e) {
text = (document.all) ? document.selection.createRange().text : document.getSelection();
document.theform.text.value = text;
return true;
}
document.onmouseup = getActiveText;
if (!document.all) document.captureEvents(Event.MOUSEUP);
// End -->
</script>
</head>
<body>
此处假设需复制的文字内容<hr>
<form name=theform>
<textarea rows="9" name="text" cols="114"></textarea>
</form>
</body>
</html> 展开
1个回答
展开全部
<html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<meta name="keywords" content="选中文字出现在文本框中" />
<meta name="description" content="选中文字出现在文本框中" />
<title>选中文字出现在文本框中</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function getActiveText(e) {
text = (document.all) ? document.selection.createRange().text : document.getSelection();
if(text!=""){
document.theform.text.value = text;
return true;
}
}
document.onmouseup = getActiveText;
if (!document.all) document.captureEvents(Event.MOUSEUP);
// End -->
</script>
</head>
<body>
此处假设需复制的文字内容<hr>
<form name=theform>
<textarea rows="9" name="text" cols="114"></textarea>
</form>
</body>
</html>
<head>
<meta http-equiv="content-Type" content="text/html;charset=gb2312">
<meta name="keywords" content="选中文字出现在文本框中" />
<meta name="description" content="选中文字出现在文本框中" />
<title>选中文字出现在文本框中</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function getActiveText(e) {
text = (document.all) ? document.selection.createRange().text : document.getSelection();
if(text!=""){
document.theform.text.value = text;
return true;
}
}
document.onmouseup = getActiveText;
if (!document.all) document.captureEvents(Event.MOUSEUP);
// End -->
</script>
</head>
<body>
此处假设需复制的文字内容<hr>
<form name=theform>
<textarea rows="9" name="text" cols="114"></textarea>
</form>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询