0

テキスト ボックスで選択されている特定のテキストを選択しようとしています。Firefox では正常に動作し、IE では動作しません。

私のコードは、

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<HTML>
<HEAD><TITLE>Selection</TITLE>
<SCRIPT type="text/javascript">
function displayText()
{
  var text = document.getElementById("text");
  var t = text.value.substr(text.selectionStart,text.selectionEnd-text.selectionStart);
  alert(t);
}
</SCRIPT>
</HEAD>
<BODY>
<input type="text" id="text"/>
 
<INPUT type="button" onclick="displayText()" value="Select text and click here" />
</BODY>
</HTML>

あなたの提案をしてください。コードに何か不足していますか?

4

1 に答える 1

2

つまり、

document.selection.createRange().htmlText;

更新された関数を試してください:

function displayText()
{
  var text = document.getElementById("text");
  var t;
  if (navigator.appName == 'Microsoft Internet Explorer')
  {
    t = document.selection.createRange().htmlText;
  } else {
    t = text.value.substr(text.selectionStart,text.selectionEnd-text.selectionStart)
  }

  alert(t);
}
于 2013-01-24T07:49:51.557 に答える