..:: MX Studio Fóruns ::..: Não me lembro como se faz - ctrl+f - ..:: MX Studio Fóruns ::..

Jump to content

Publicidade




ATENÇÃO

Para evitar posts desnecessários e que não influam para o andamento e desenvolvimento do fórum, clique aqui e leia todas as regras.
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Não me lembro como se faz - ctrl+f Busca dentro da página

#1 User is offline   Matheus Augusto 

  • Group: Membros
  • Posts: 150
  • Joined: 27-April 04

Posted 29 March 2005 - 04:01 PM

Pessoal, estou com um problema que sei que não é difícil de se resolver
Preciso fazer um sisteminha que localize as palavras dentro de 1 página do site, ou seja a página que estiver em execução.
Mais ou menos como aquele comando do windows Ctrl+F de localizar.
Se alguem souber por favor socorra-me, é urgente.
Um abraço

0

#2 User is offline   Penelope 

  • Group: Membros
  • Posts: 82
  • Joined: 22-March 04

  Posted 29 March 2005 - 05:42 PM

Olha esse Java Script:

CODE

<html>

<head>

<script Language="JavaScript">

var NS4 = (document.layers);
var IE4 = (document.all);
var win = this;
var n = 0;
function findInPage(str)
{
var txt, i, found;
if (str == "")
return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
if (n == 0) alert(str + " não foi encontrada nesta página.");
}
if (IE4) {
txt = win.document.body.createTextRange();
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n > 0) {
n = 0;
findInPage(str);
}
else
alert(str + " não foi encontrada nesta página.");
}
}
return false;
}
</script>

</head>

<body>

<form name=search onSubmit="return findInPage(this.string.value);">
Lacalizar palavra na página:
<input name=string type=text  size=30 onChange="n = 0;">
<input type=submit value="Localizar">
</form>


</body>

</html>


thumbup.gif Ele localiza e destaca a palavra que vc digitou no formulário thumbup.gif
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic



Publicidade




1 User(s) are reading this topic
0 membro(s), 1 visitante(s) e 0 membros anônimo(s)