Jump to content
  • 0

подскажите ошибку


mr.Dassler
 Share

Question

Объясните ошибку, почему при нажатии отмена или OK выводится только переменная s без переменной name !?

var name = prompt("Введите ваше имя","");

var s = "<h1>Привет, "+name+"!</h1>";

if (!name)

{

name="незнакомец";

document.write(s);

}

else

document.write(s);

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

http://jsfiddle.net/MGDFb/

update: можно даже сократить:


var name = prompt("Введите ваше имя","");
var s = "<h1>Привет, "+name+"!</h1>";
if (!name)
{
document.write("<h1>Привет, незнакомец!</h1>");
}
else document.write(s);

Edited by hypnocolor
Link to comment
Share on other sites

  • 0

mr.Dassler, я думал, вы догадаетесь, сравнивая рабочий и нерабочий код :)

Вы переменной name задаёте значение «незнакомец», если пользователь ничего не ввёл. А между тем, переменная s, в значение которой вы включили значение перенной name, об этом ничего не знает. Поэтому вместо name там осталось пустое место. То есть, например, если бы вы сделали вот так:


var name = prompt("Введите ваше имя","");
var s = "<h1>Привет, "+name+"!</h1>";
if (!name)
{
var name="незнакомец";
var s = "<h1>Привет, "+name+"!</h1>";
document.write(s);
}
else
document.write(s);

, то достигли бы искомого результата. Но мой вариант логичнее и короче :)

Edited by hypnocolor
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