ワードプレスでターム一覧のリンクをセレクトボックスで作成したのですが一覧(<option value="allurl" disabled>All</option>)へのリンクがうまく作動せずターム一覧の最初のリンクにジャンプしてしまいます。
どこを直せばよいかご教示いただけますと幸いです。
<script type="text/javascript"> var target = ""; function jump(){ var url = document.form1.select.options[document.form1.select.selectedIndex].value; if(url != "" ){ if(target == 'top'){ top.location.href = url; } else if(target == 'blank'){ window.open(url, 'window_name'); } else if(target != ""){ eval('parent.' + target + '.location.href = url'); } else{ location.href = url; } } } </script> <form action="#" name="form1"> <div class="side-category"> <h3 class="products-side__title">CATEGORY</h3> <div class="sel sel--black-panther"> <select name="select"> <option value="allurl" disabled>All</option> <?php $terms = get_terms('products_category'); foreach ( $terms as $term ) { echo '<option value="'.get_term_link($term).'">'.$term->name.'</option>'; } ?> </select> </div> </div> <input class="products-catbtn" type="button" value="Search" onClick="jump()"> </form>
結果
<div class="sel sel--black-panther"> <span class="sel__placeholder sel__placeholder--black-panther" data-placeholder="All">All</span> <div class="sel__box sel__box--black-panther"> <span class="sel__box__options sel__box__options--black-panther">カテゴリー1</span> <span class="sel__box__options sel__box__options--black-panther">カテゴリー2</span> <span class="sel__box__options sel__box__options--black-panther">カテゴリー3</span> <span class="sel__box__options sel__box__options--black-panther">カテゴリー4</span> <span class="sel__box__options sel__box__options--black-panther">カテゴリー5</span> <span class="sel__box__options sel__box__options--black-panther">カテゴリー6</span> </div> <select name="select" style="display: none;"> <option value="allurl/" disabled="">All</option> <option value="allurl/products_category/category1/">カテゴリー1</option> <option value="allurl/products_category/category2/">カテゴリー2</option> <option value="allurl/products_category/category3/">カテゴリー3</option> <option value="allurl/products_category/category4/">カテゴリー4</option> <option value="allurl/products_category/category5/">カテゴリー5</option> <option value="allurl/products_category/category6/">カテゴリー6</option> </select> </div> <input class="products-catbtn" type="button" value="Search" onclick="jump()">
あなたの回答
tips
プレビュー