ďťż
Podstrony
|
telcocafeCo trzeba zrobić by w tworzeniu strony, można by był wstawić wyszukiwarke, która nie bedzie przeszukiwac internetu, tylko dany obszar, lub cały obszar z tej strony co na niej się znajduje, lub coś pobobnego, tylko żeby to tu wyszukiwało informacje z np. moje strony! :mellow:O to Ci chodzi? <script language="Javascript"> var NS4 = (navigator.appName.indexOf("Netscape") >= 0 && parseFloat(navigator.appVersion) >= 4) ? 1 : 0; var IE4 = (document.all); var win = this; // Page to search. var n = 0; // Set up keypress event capturing. if (NS4) document.captureEvents(Event.KEYPRESS); document.onkeypress = getKey; function findInPage(str) { var txt, i, found; if (str == "") return false; // Find next occurance of the given string on the page, wrap around to the // start of the page if necessary. if (NS4) { // Look for match starting at the current point. If not found, rewind // back to the first match. if (!win.find(str)) while(win.find(str, false, true)) n++; else n++; // If not found in either direction, give message. if (n == 0) alert("Brak słowa na podstronie."); } if (IE4) { txt = win.document.body.createTextRange(); // Find the nth match from the top of the page. for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) { txt.moveStart("character", 1); txt.moveEnd("textedit"); } // If found, mark it and scroll it into view. if (found) { txt.moveStart("character", -1); txt.findText(str); txt.select(); txt.scrollIntoView(); n++; } // Otherwise, start over at the top of the page and find first match. else { if (n > 0) { n = 0; findInPage(str); } // Not found anywhere, give message. else alert("Brak słowa na podstronie."); } } return false; } function getKey(e) { var key; // Check for enter key. if ((IE4 && event.keyCode == 13) || (NS4 && e.which == 13)) findInPage(document.forms["search"].string.value); } </script> I w dowolnym miejscu strony wpisujesz: <form name=search onsubmit="return findInPage(this.string.value)"> <p align=center><font size=3><input name=string type=text size=20 onchange="n = 0;" style="width: 150; height: 23" style="color: #FFFFFF; background-color: #666666; border-color: #666666"> </font> <input type=submit value=Szukaj style="background-color: gray; color: #FFFFFF; border-style: solid; border-color: black"></p></form> ;) Ta wyszukiwarka wyszukuje tylko na danej stronie gdzie to jest wstawianoe, czy na wszytkich! No serdeczne dzięki!! :rolleyes: Na jednej stronie gdzie jest wstawiona. To taka wyszukiwarka słów. Chcesz inną? Czy ta jest OK? http://forum.ks-eksp. ..ndpost&p=260537 |
|||
Sitedesign by AltusUmbrae. |