如何在不使用提交(发布或获取)的情况下获取Select的值

时间:2017-02-06 13:41:44

标签: php wordpress web

<select name="sort-posts" id="sortbox" name="sortbox">
    <option value="" disabled>Sort by</option>
    <?php
        $categories = get_categories(['exclude' => 1]);
        foreach ($categories as $category) {
            echo "<option>$category->name </option>";
        }
    ?>
    <option>Newest</option>
    <option>Oldest</option>
    <option>Title Asc</option>
    <option>Title Desc</option>
</select>

我希望在不重定向或使用表单的情况下获取所选选项的值,以便我在函数中使用它。

我该怎么做?

0 个答案:

没有答案