Jump to content
  • 0

Помогите с привязкой JavaScript к форме


papa_misha
 Share

Question

вот код

<form method="GET" action="au.js" name="au">

<p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><font face="Segoe UI">Авторизация</font></p>

<p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><font face="Segoe UI">Имя:</font></p>

<p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><font face="Segoe UI"><input type="text" name="T1" size="28"></font></p>

<p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><font face="Segoe UI">Пароль:</font></p>

<p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><font face="Segoe UI"><input type="password" name="T2" size="28"></font></p>

<p style="word-spacing: 0; margin-top: 0; margin-bottom: 0" align="center"><font face="Segoe UI"><input type="submit" value="Увійти" name="B1" onclick="go()"><input type="reset" value="Відмінити" name="B2"></font></p>

</form>

<script type="text/javascript" src="au.js"></script>

вот скрипт

Function go()

{var users= new Array():

users["admin"]="qwerty";

var password = new Array();

password["qwerty"]= href="usr/admin/admin.html;

var log=document.forms["au"].elements["T1"].value;

var pass=document.forms["au"].elements["T2"].value;

if (users[log]=pass)

{password[pass]}

else {alert ("неверный логин");}

}

Проблема в следующем, как привязать скрип к форме, и какое значение должно быть у actipn=""?

браузер предлагает сохранить файл au.js скорей всего у меня там не правильное значение actipn=""

Помогите!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

<FORM onSubmit="go()">
...элементы формы...
</FORM>

function go(){
...строки кода...
if (!validData){
return true}
else{
return false;}
}

Но как вам уже сказали Проверку пароля яваскриптом делать нельзя, обычно яваскрипт проверяет правильность заполнения обязательный полей, но никак не авторизацию

Link to comment
Share on other sites

  • 0

спасибо! дело в том что авторизация чисто формальная, притом скрипт будет грузиться из отдельного файла, плюс страница с этим скриптом будет загружаться в <iframe>, тоесть риск получения пароля минимальный!

Link to comment
Share on other sites

  • 0
спасибо! дело в том что авторизация чисто формальная, притом скрипт будет грузиться из отдельного файла, плюс страница с этим скриптом будет загружаться в <iframe>, тоесть риск получения пароля минимальный!

Риск при этом, на самом деле, практически такой же. Разве что просто кому-то будет лень...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy