JS 怎么获取文本框中选中的文字
2个回答
展开全部
//获取选中的文字
function getSelectText(editor) {
if (!editor) return; editor.focus();
if (editor.document && editor.document.selection)
return editor.document.selection.createRange().text;
else if ("selectionStart" in editor)
return editor.value.substring(editor.selectionStart, editor.selectionEnd);
}
//调用方式
var text= getSelectText(document.getElementById("txtName"));
推荐于2018-03-30 · 知道合伙人互联网行家
关注
展开全部
解决文本框获得焦点,即使得文本框的内容被选中。
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>select文件</title>
<script language="javascript" type="text/javascript">
function getFocus()
{
document.getElementById("test").select();
}
</script>
</head>
<body>
<form id="f1">
<input type="text" id="test" name="test" value="你好吗?"
onfocus="getFocus();"/>
</form>
</body>
</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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>select文件</title>
<script language="javascript" type="text/javascript">
function getFocus()
{
document.getElementById("test").select();
}
</script>
</head>
<body>
<form id="f1">
<input type="text" id="test" name="test" value="你好吗?"
onfocus="getFocus();"/>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询