Jump to content
  • 0

Доступ к свойству 'value' инпута типа 'password'


SuperPuperLesha
 Share

Question

Привет,

мне надо на JavaScript получить пароль пользователя,

из <input type="password" name="pswd" id="pswd" class="login_usrpswd_txt" />

получить хочу так :

pswd_old = document.getElementById('pswd').value;

отдаёт звездочку (*).

Подскаж плиз как надо правильно это сделать?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Я не знаю, на каком браузере вы протестили сие действие, но у меня в Firefox alert() выводит пароль.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test Site</title>
<script src="js/jquery-1.7.1.js"></script>
</head>
<body>
<input type="password" id="passwd"><br>
<button type="button" onclick="alert(document.getElementById('passwd').value);">Password is</button>
</body>
</html>

Вы вообще на стороне клиента пытаетесь получить доступ к password?

Link to comment
Share on other sites

  • 0

Все, я кажется понял. Переменной надо присваивать только ссылку document.getElementById("passwd"), а потом чтобы получить значение password'а, написать свойство value (типа variable.value). На клиенте будет работать, на сервере не стал проверять.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test Site</title>
</head>
<body>
<input type="password" id="passwd"><br>
<script>
var user_passwd = document.getElementById("passwd");
function show_passwd() {
document.write(user_passwd.value);
}
</script>
<button type="button" onclick="show_passwd()">Показать пароль</button>
</body>
</html>

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