简体   繁体   中英

select won't show itself and choosing an option won't work

i got a html-dummy ( http://www.gisa.de/formular_test/anmeldeformular.html ) from another company and now i am trying to create a web-form ( http://www.gisa.de/2359.html ) based on that dummy. i am using the same scripts, the basic structure is the same as the dummy, i've compared the sh** out of the code and found nothing. I found one thing with firebug: the site with the non-working select-block won't call the function custom_select from the script.js file - but why???

在此处输入图片说明

i hope someone will find a solution, or something that i've just overlooked

i made 2 jsfiddle out of it:

http://fiddle.jshell.net/WbXsv/1/

http://fiddle.jshell.net/95Q8P/1/

The code is not the same. On your page, you're missing two spans in your div select . Your page:

<div class="select">
    <select name="anrede" id="anrede" required="" class="input" style=">
      <option value="0" selected="selected">bitte auswählen</option>
      <option value="Frau">Frau</option>
      <option value="Herr">Herr</option>
    </select>
</div>

Their page:

<div class="select">
    <select name="anrede" id="anrede" required="" class="input" style=">
      <option value="0" selected="selected">bitte auswählen</option>
      <option value="Frau">Frau</option>
      <option value="Herr">Herr</option>
    </select>
    <span class="select-icon"></span>
    <span class="select-box">bitte auswählen</span>
</div>

Adding those solved the issue.

You have:

.js select {
    opacity: 0;
}

in gisa.css and custom_select function is adding custom html in place of hidden select.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM