PHP - PRE-select drop down option

前端 未结 3 431
渐次进展
渐次进展 2020-12-19 10:59

Using the example at the following URL: http://www.kavoir.com/2009/02/php-drop-down-list.html

How can I have that drop down menu pre-select one of the options such a

3条回答
  •  旧巷少年郎
    2020-12-19 11:34

    When you echo your option, echo it as follows:

    
    

    Or you can use js as follows:

    var dropDownList = document.getElementById('dropDownListId');
    dropDownList.options[optionIndex].selected = true;
    

    I tweaked this function a bit but you can use it:

    function generateSelect($name, $options, $optionToSelect) {
        $html = '';
        return $html;
    }
    

提交回复
热议问题