createRange在Chrome中不起作用

时间:2012-10-16 09:44:04

标签: javascript google-chrome compatibility

这适用于IE9,但不适用于Chrome。 我想在Chrome中运行它。 这是为了找到我正在寻找的单词,当我把这个词放在文本框中。 谁能为我解决这个问题??

var n = 0;
var str = '';

function chk() {
  str = form1.kts.value;
  if (str == '') alert('none!');
  else ok();
}

function ok() {
  var found;
  var text = document.body.createTextRange();

  for (i = 0; i <= n && (found = text.findText(str)) != false; i++) {
    text.moveStart("character", 1);
    text.moveEnd("textedit");
  }
  if (found) {
    text.moveStart("character", - 1);
    text.findText(str);
    text.scrollIntoView();
    text.select();
    n++;
  } else {
    if (n > 0) {
      n = 0;
      ok();
    } else {
      alert("nothing.");
      form1.kts.value = '';
    }
  }
}

1 个答案:

答案 0 :(得分:0)

createTextRange仅在IE(以及某些版本的Opera)中受支持,为了解决您的问题,您应该使用createRange代替其他浏览器。

var n = 0,
    str = ''; 

function chk(){ 
    str = form1.kts.value; 
    if(str == '') {
        alert('none!');
    }else{
        ok();
    }
} 

function ok(){ 
    var found, text;
    if (document.createRange) {
        text = document.body.createTextRange();
        // do stuff for IE here
    }else{
        if( document.selectionStart ) {
            text = document.setSelectionRange(start, end);
            // do stuff for other browsers here
        }
    }

 .........​