Jump to content
  • 0

Изобр. на форме с меняющейся картинкой


frrgstr
 Share

Question

Есть вот такая заготовка:

<a href="http://www.mail.ru"
onMouseOver="document.button.src='buttoni.png'"
onMouseOut="document.button.src='button.png'">
<img src="button.png" class="csbutton" alt="Рассчитать индивидуально" name="button"></a>

Которая, как известно, при наведении курсора мыши на кнопку меняет картинку.

Пытался сделать такое с картинокой в форме:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Кнопка с изображением</title>
</head>
<body>
<form action="handler.php">
<p><b>Введите ваше имя:</b></p>
<p onmouseover="document.sc.src='b_sl_SCi.png'" onmouseout="document.sc.src='b_sl_SC.png'">
<input type="text" size="35">
<input type="image" src="b_sl_SC.png" alt="Отправить форму на сервер" name="sc"></p>
</form>
</body>
</html>

Не прокатило в IE6 и опера 10. Можно ли такое вообще сделать? Или может я где-то ошибся?

Edited by frrgstr
Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

document указывать пробовал. Тут с браузерами напряги, попробую на другой машине.

За строчные буквы Спасибо.

Ещё такой вопрос: где-то, где не помню (могу ошибаться), на страницах htmlbook.ru видел, что в стили в CSS нужно писать прописными для устойчивости. Пример:

<style type="text/css">
TABLE
{...}
</style>

Не могу найти, где было! Так это или нет?

Edited by frrgstr
Link to comment
Share on other sites

  • 0

Пишу так:

<form action="index.php" name="form1">
<a onmouseover="document.form1.b1.src='b_sl_SCi.png'"
onmouseout="document.form1.b1.src='b_sl_SC.png'">
<input type="image" src="b_sl_SC.png" id="b1"></a>
</form>

или

<form action="index.php" name="form1">
<input type="image" src="b_sl_SC.png" id="b1" onmouseover="document.form1.b1.src='b_sl_SCi.png'" onmouseout="document.form1.b1.src='b_sl_SC.png'">
</form>

Где я не прав?

Edited by frrgstr
Link to comment
Share on other sites

  • 0

Хм, внатуре... а у <input type="image" /> есть атрибут name? Что-то в спецификации я ничего об этом не нашел.

Но фишка в том, что <input type="image" /> найти по name не получается. Юзайте вместо этого id.

В этом случае так:

<form action="index.php">
<a href="/" onmouseover="document.getElementById('b1').src='b_sl_SCi.png'" onmouseout="document.getElementById('b1').src='b_sl_SC.png'"></a>
<input type="image" src="b_sl_SC.png" id="b1" />
</form>

А в этом случае так:
<form action="index.php">
<input type="image" src="b_sl_SC.png" onmouseover="this.src='b_sl_SCi.png'" onmouseout="this.src='b_sl_SC.png' />
</form>

Link to comment
Share on other sites

  • 0

Спасибо! :)

Хм, внатуре... а у <input type="image" /> есть атрибут name? Что-то в спецификации я ничего об этом не нашел.

http://stepbystep.htmlbook.ru/?id=23

Спецификацию не читал, понадеялся на ресурс.

П.С. Найду время - выучу js

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