0

こんにちは、選択したテキストの段落を取得する機能が必要です。

これは、選択したテキストの現在の段落を取得する関数です

function getSelected() {
  var userSelection;
  if (window.getSelection) {
      selection = window.getSelection();
  } else if (document.selection) {
      selection = document.selection.createRange();
  }
  var parent = selection.anchorNode;
  parent = parent.parentNode;
  alert(parent.innerHTML);

}

Web ページで選択したテキストの前後の段落を取得するにはどうすればよいですか。上記の現在の段落を取得する機能がある場合。(nextSibling を使用すると思いますが、上記のコードでそれを実装する方法がわかりません) 助けてもらえますか?

-ありがとうございました-

4

1 に答える 1

1

パラメータを取得するには、previousSibling と nextSibling を使用できます。

HTML:

<p> This is 1st paragraph</p>
<p> This is 2nd paragraph</p>
<p> This is 3rd paragraph</p>
<a href="javascript:void(0)" onclick="getSelected(-1)">Prev</a>
<a href="javascript:void(0)" onclick="getSelected(1)">Next</a>

Javascript:

function getSelected(direction) {
  var userSelection;
  if (window.getSelection) {
      selection = window.getSelection();
  } else if (document.selection) {
      selection = document.selection.createRange();
  }
  var parent = selection.anchorNode;
  parent = parent.parentNode;
  if(direction == -1){
    var prevEle = parent.previousSibling;
    while(prevEle.nodeType!=1){
        prevEle = prevEle.previousSibling;
    }
    alert(prevEle.innerHTML);
  }else {
    var nextEle = parent.nextSibling ;
    while(nextEle.nodeType!=1){
        nextEle = nextEle.nextSibling;
    }
    alert(nextEle.innerHTML);
  }
}
于 2010-12-02T07:00:34.490 に答える