2

当我尝试传递分布在几个块元素中的文本时,window.find 方法会起作用:

HTML

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
</head>
<body>
  <p>search me</p><b> I could be the answer</b>
</body>
</html>

JavaScript

window.find("meI could be");

或者:

str = "me";
str+= "\n";
str+="I could be t";

window.find(str);

<p>元素存在于搜索词之间时,就会发生这种情况。

我该如何解决?

4

1 回答 1

3
于 2012-09-16T07:08:49.943 回答