Jump to content
  • 0

СОбытие Onlcik


Exorcist
 Share

Question

Всем привет.

Хочу сделать нечто мини меню. Нажал на рисунок кнопку и вылезло необходимое окно (div) Вот как сделал

<style type="text/css"> 
<!--
.class_div{border:2px dashed #FF0000;margin:6px;padding:6px;display:none;}
-->
</style>
<script type="text/javascript">
function myFunc(v){
var obj = document.forms['name_form'].getElementsByTagName('div');
for(var i = 0, n = 0, len = obj.length; i < len; i++){
if(obj[i].className == 'class_div'){
obj[i].style.display = 'none';
if(v == n) obj[i].style.display = 'block';
n++;
}
}
}
</script>
<form action="" method="post" name="name_form">
<input type="image" src="but/menu.jpg" name="ch2" value="0" onclick="myFunc(this.value)" />
<input type="image" src="but/proezd.jpg" name="ch" value="1" onclick="myFunc(this.value)" />
<input type="image" src="but/photo.jpg" name="ch" value="2" onclick="myFunc(this.value)" />
<input type="image" src="but/flaer.jpg" name="ch" value="3" onclick="myFunc(this.value)" />

<div class="class_div">000000</div>
<div class="class_div">111111</div>
<div class="class_div">222222</div>
<div class="class_div">333333</div>

</form>

Если в type вместо image поставить radio то все ок. Найдите ошибку=(

Edited by Exorcist
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

<input type="image">, как и <input type="submit">, при клике перегружает страницу (отправляя форму на сервер). Решение, кот. предложил dyadya, отменяет это дефолтное действие и тем самым чинит работоспособность. А вообще, на мой взгляд, ни к чему тут <input type="image">, повесить onclick с тем же успехом можно на обычный <img>.

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