0

私の最終的な目標は、別のオプションが選択されたときにボタンを表示する小さなドロップダウン メニューを用意することです! これが私のコードです:ps. (私は Twitter のブートストラップを使用しています!) pps. (ボタンをクリックするとウェブサイトへのリンクが開きますが、まだ入力していません!):

<select value="Graphic Design" id="mydemo" class="span3 offset4" tabindex="1" name="theartsierlist">
    <option id="already" value="0" selected="selected">Choose An Artsiness</option>
    <option id="zero" value="http://www.google.com">Photoshop</option>
    <option id="one" value="1">Illustration</option>
    <option id="two" value="2">Coding</option>
</select>

<button id="mybutton" onclick="window.open(mydemo.options[mydemo.selectedIndex].value)"  class="btn btn-primary btn-large btn-danger">Downloads</button>

<script>
    x = document.getElementById("mydemo").options[mydemo.selectedIndex].value
    y = document.getElementById("mybutton");
    var visible = new function(){
    if (document.getElementById("mydemo").options[mydemo.selectedIndex].value == 0) {
        y.style.visibility = "hidden";
    } else if????
</script>
4

0 に答える 0