HighDots Forums  

Funktionsaufruf via Dropdown Menü

Javascript (German) Programmiersprache JavaScript. (de.comp.lang.javascript)


Discuss Funktionsaufruf via Dropdown Menü in the Javascript (German) forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Luc! Hutter
 
Posts: n/a

Default Funktionsaufruf via Dropdown Menü - 11-10-2003 , 10:21 AM






Tschou zäme!

Mit der "Holzhammer-Methode" habe ich das gängige Dropdown-Link-Menü
angepasst und rufe nun meine Funktionen mit
location.href='javascript:funktion()...' auf. Funktioniert im IE, NS macht
Probleme...

Da müsste es doch eine saubere Lösung geben?

Mein Code:

<script>
function mach_das(w1) {
alert('Deine Wahl ist die Nummer'+w1);
}
</script>

<select name="D1" onChange="location.href='javascript:' +
this.form.D1.options[this.form.D1.options.selectedIndex].value;">
<option value="mach_das(1)">wahl 1</option>
<option value="mach_das(2)">wahl 2</option>
<option value="mach_das(3)">wahl 3</option>
</select>


Merci und MfG: L.U.C.



Reply With Quote
  #2  
Old   
Steffen Laubner
 
Posts: n/a

Default Re: Funktionsaufruf via Dropdown Menü - 11-10-2003 , 02:39 PM






Luc! Hutter schrieb:

Quote:
Mit der "Holzhammer-Methode" habe ich das gängige Dropdown-Link-Menü
angepasst
Das sieht man...

Quote:
und rufe nun meine Funktionen mit
location.href='javascript:funktion()...' auf.
Funktioniert im IE, NS macht
Probleme...
Definiere "macht Probleme" --> http://glasgoogle.de/

Quote:
Da müsste es doch eine saubere Lösung geben?
Abersicherdat!

Quote:
script
function mach_das(w1) {
alert('Deine Wahl ist die Nummer'+w1);
}
/script

select name="D1" onChange="location.href='javascript:' +
this.form.D1.options[this.form.D1.options.selectedIndex].value;"
Hualp....
onChange="mach_das(this.options[this.selectedIndex].value)"

Quote:
option value="mach_das(1)">wahl 1</option
<option value="1">wahl 1</option>
....

Quote:
/select
Beachte, dass onChange nicht feuert, wenn User beim ersten mal "wahl
1" waehlt, da keine Wechsel (Change) erfolgt.

--
http://www.geocities.com/SoHo/Bistro/9813/ - Photogallery (JavaScript)
http://www.fotocommunity.de/pc/pc.php4?mypics=1631 - more Photos


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.