jquery选中下拉框中值统计到文本框
程序员文章站
2022-04-18 21:48:33
...
这次给大家带来jquery选中下拉框中值统计到文本框,jquery选中下拉框中值统计到文本框的注意事项有哪些,下面就是实战案例,一起来看一下。
具体代码如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title>jQuery添加下拉框元素</title> <script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script> </head> <!-- 加在body标签中屏蔽右键 oncontextmenu="return false" --> <body > <select name="city" id="s2" lay-search> <option value="">请选择</option> <option value="layer">layer</option> <option value="form">form</option> <option value="layim">layim</option> </select> <button class="layui-btn " type="button" id="add_subject">添加</button> <input name="subject" id="subject" type="text" data-label="," value=""> <script> var seleVal=''; $("#add_subject").on("click",function(){ seleVal+=$("#s2>option:selected").val()+','; $("#subject").val(seleVal); }) </script> </body> </html>
相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!
推荐阅读:
以上就是jquery选中下拉框中值统计到文本框的详细内容,更多请关注其它相关文章!