euphoric Posted August 8, 2010 Report Share Posted August 8, 2010 Labs vakars ! Lietas būtība : http://site.lv/veikals/visas <select size="1" name="pilsetas" onchange="???"> <option value="Visas" selected="selected">Visas</option> <option value="Riga">Rīga</option> <option value="Ogre">Ogre</option> <option value="Aizkraukle">Aizkraukle</option> </select> Gribas pārmaiņas, -tikt vaļā no Submit'a . 1. Gribētos jau protams visu elementārāk : Uz OnChange, pārmet: http://site.lv/veikals/value Bet tā pa taisno izvilkt Value drošvien nevar ? 2. Tad vismaz uz OnChange izsukt PHP scriptu, kas savukārt ar $_POST ievāks Value un tad jau redirekts ? Kādi varianti, domu gājiens pareizs ? Pāldies ! :) Quote Link to comment Share on other sites More sharing options...
101111 Posted August 8, 2010 Report Share Posted August 8, 2010 Pirmais variants droši vien ir diezgan elementās. Uz onchange eventa redirekto uz adresi, kurai galā pielikta dropdownī izvēlētā vērtība. Cerams, ka tas ko gribēji Javascript function redirect(val) { window.location="http://site.lv/veikals/"+val; } HTML <select size="1" name="pilsetas" onchange="redirect(this.options[this.selectedIndex].value)"> <option value="Visas" selected="selected">Visas</option> <option value="Riga">Rīga</option> <option value="Ogre">Ogre</option> <option value="Aizkraukle">Aizkraukle</option> </select> Quote Link to comment Share on other sites More sharing options...
euphoric Posted August 8, 2010 Author Report Share Posted August 8, 2010 Jā, liels paldies ! Vienīgi, window.location="http://site.lv/veikals/"+val; Uz window.location.href="http://site.lv/veikals/"+val; Pāldies =) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.