[Ruimo Network] Realize the combination of select drop-down box and input input box in HTML

1. Drop-down box + input box

The select drop-down box combined with the input box
supports the selection of the drop-down box, supports content retrieval, and supports manual input
<html>  
    <head>  
        <title>可编辑下拉框</title>  
        <meta charset="UTF-8" />  
    </head>  
    <body>  
        <div class="appNameSelect">
            <a>联系方式:</a>
            <input id="appName" type="text" list="appNamelist" style="padding:0.5em;border-radius:10px;">
            <datalist id="appNamelist">
                <option>WeChat(微信)</option>
<option>QQ</option>
<option>Google Talk</option>
<option>Twitter</option>
                <option>Facekbook</option>
            </datalist>
        </div>
    </body>  
</html>  

Guess you like

Origin blog.csdn.net/rrmod/article/details/128923670