문제

I'm developping a mobile application with phonegap. In this app, i use "select" elements. When i click on the select to change the option, a pop-up appears (as expected) with the options.

My question is : Is there a way to add a title to this pop-up ? (without plugin)

Thanks

도움이 되었습니까?

해결책

Use the optgroup wrapper on your options.

Example:

<select>
    <optgroup label="Your Title">
        <option>1</option>
    </optgroup>
</select>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top