Adam Jakub Maciejczyk

Adam Jakub Maciejczyk newPR :: Grupa AG
ESSEKER

Temat: POMOCY- Pilnie potrzebuję usunięcie funkcji OnClick!

Oto skrypt (Źródło strony) potrzebuję wywalić funkcję OnClick, jednak nie wiem jak.

Aby potwierdzić szukanie trzeba klikać w "kliknii" (Później zamienie na szukaj)

A chce żeby szukał tez po wciśnięciu ENTER

Pomocy!

Proszę gotowy kod do wklejenia na stronę!

<html dir="ltr">
<head>
<!--
Created by Greg Boyd on July 30, 1997
To use this teleport/password feature as I call it, all you need to do
is cut and paste the entire code including what you are reading.
The file takes what you put in the box and takes you to the page of that name.
It is easier to use if you include a list of the sites on your pages.
If you have problems getting this to work, email me at mims@frontiernet.net.net .
--><script Language="JavaScript">
// Greg Boyd; mims@frontiernet.net URL: http://www.frontiernet.net/~mims/
// Password Java Script (v1.0);
// Please honor my hard work, if you use a variant of this in your page, then
// please email me :) and keep the above comments in the Script.
//
// This code is Copyright (c) 1997 Greg Boyd,
// all rights reserved. In order to receive the right to license this
// code for use on your site the original code must be copied from the
// Web site http://www.frontiernet.net/~mims/. License is granted touser to
// reuse this code on their own Web site if and only if this entire copyright
// notice is included. Code written by Greg Boyd of http://www.frontiernet.net/~mims/.

function password (pass) {

var password = ''


if (password != null){
location.href="http://www.google.com/cse?cx=015610430896682689255%3Ak62l4rvxoce&ie=UTF-8&q=" + pass + "&sa=Szukaj";
}
}
</script>
</head>
<body spellcheck="false">
<p><FORM name="login">
<INPUT NAME="pass"><br><br>
<INPUT TYPE="button" VALUE="Kliknij" onClick="password(form.pass.value)">
<INPUT TYPE="RESET" VALUE="Wyczyść">
</form></p>
</body>

</html>

konto usunięte

Temat: POMOCY- Pilnie potrzebuję usunięcie funkcji OnClick!

nie to forum.
to jest javascript a forum jest o javie
java != javascriptPiotr Szulawski edytował(a) ten post dnia 29.05.09 o godzinie 14:36
Michał Wachowski

Michał Wachowski Dyrektor Działu
Programistów,
Architekt Systemów
IT

Temat: POMOCY- Pilnie potrzebuję usunięcie funkcji OnClick!

co prawda to javascript ale spróbuj tego:


<html dir="ltr">
<head>
<!--
Created by Greg Boyd on July 30, 1997
To use this teleport/password feature as I call it, all you need to do
is cut and paste the entire code including what you are reading.
The file takes what you put in the box and takes you to the page of that name.
It is easier to use if you include a list of the sites on your pages.
If you have problems getting this to work, email me at mims@frontiernet.net.net .
-->
<script Language="JavaScript">
// Greg Boyd; mims@frontiernet.net URL: http://www.frontiernet.net/~mims/
// Password Java Script (v1.0);
// Please honor my hard work, if you use a variant of this in your page, then
// please email me :) and keep the above comments in the Script.
//
// This code is Copyright (c) 1997 Greg Boyd,
// all rights reserved. In order to receive the right to license this
// code for use on your site the original code must be copied from the
// Web site http://www.frontiernet.net/~mims/. License is granted touser to
// reuse this code on their own Web site if and only if this entire copyright
// notice is included. Code written by Greg Boyd of http://www.frontiernet.net/~mims/.
function password(pass) {
var password = ''
if (password != null){
location.href="http://www.google.com/cse?cx=015610430896682689255%3Ak62l4rvxoce&ie=UTF-8&q=" + pass + "&sa=Szukaj";
}
}
function password2(field, e){
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return true;
if (keycode == 13){
location.href="http://www.google.com/cse?cx=015610430896682689255%3Ak62l4rvxoce&ie=UTF-8&q=" + field.value + "&sa=Szukaj";

return false;
}
else return true;
}
<br>
</script>
</head>
<body spellcheck="false">
<p>
<FORM name="login">
<INPUT NAME="pass" onkeypress="return password2(this, event)">
<br>
<br>
<INPUT TYPE="button" VALUE="Kliknij" onClick="password(form.pass.value)">
<INPUT TYPE="RESET" VALUE="Wyczyść">
</form>
</p>
</body>
</html>
Adam Jakub Maciejczyk

Adam Jakub Maciejczyk newPR :: Grupa AG
ESSEKER

Temat: POMOCY- Pilnie potrzebuję usunięcie funkcji OnClick!

Dzięki za dobre chęci ale niestety OnClick nadal blokuje ENTER! :-(
Olga Grabek

Olga Grabek Senior Software
Engineer

Temat: POMOCY- Pilnie potrzebuję usunięcie funkcji OnClick!

Wywal onClick(), z buttona zrób input typu submit, a na formularzu zrób funkcje onsubmit(), która będzie sprawdzała czy hasło nie jest puste. Jeżeli puste zwracasz false, w przeciwnym wypadku true. Enter będzie działał.
Adam Jakub Maciejczyk

Adam Jakub Maciejczyk newPR :: Grupa AG
ESSEKER

Temat: POMOCY- Pilnie potrzebuję usunięcie funkcji OnClick!

Otrzymałem nowy kod...

Ale dziękuję za chęci...

Dla zainteresowanych:

<script language="JavaScript">
function _ZM_Szukaj (what, ev)
{
if (document.getElementById('_ZM_Szukacz'))
{
if (what == 'Szukaj')
{
top.location = 'http://www.zlotemysli.pl/viper134,WYSZUKIWARKA/search/?search='+document.getElementById('_ZM_Szukacz').value;
} else if (what == 'Guziczek')
{
if (ev.keyCode == 13)
{
_ZM_Szukaj('Szukaj');
} else if (ev.keyCode == 27)
{
document.getElementById('_ZM_Szukacz').value = '';
};
};
};
};
</script>
<input name="_ZM_Szukacz" id="_ZM_Szukacz" value="" onkeyup="_ZM_Szukaj('Guziczek', event);" />
<input type="button" onclick="_ZM_Szukaj('Szukaj');" value="SZUKAJ" />


Proszę o zamknięcie tematu...



Wyślij zaproszenie do