猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
做重置,要求点击“重置”按钮页面中所有select都选中第一个option。
做重置,要求点击“重置”按钮页面中所有select都选中第一个option,咋写啊?
郎朗坤
浏览 1241
回答 2
2回答
温温酱
<!DOCTYPE html><html> <head> <meta charset='utf-8'> <script src='jquery-1.11.3.js'></script> </head> <body> <select id='s1' class='selector'> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> <select id='s2' class='selector'> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> <button onclick='resetValue()'>click me to reset select value</button> <script> function resetValue () { /* var select1 = $('#s1'); console.log(select1); console.log(select1.find("option").first()); select1.find("option").attr("selected", false); select1.find("option").first().attr("selected", true); */ var select1 = $('.selector'); console.log(select1); select1.each(function(i, j){ console.log(j.id); var options = $('#'+j.id).find("option"); options.attr("selected", false); options.first().attr("selected", true); }) } </script> </body></html>
0
0
0
白衣染霜花
给select一个id 如:id="select"给默认的选择option给一个value = 0。$(function(){ $("#a").click(function(){ $("#select").val("0");})});a是button"重置按钮"的id。另外,一定要引用Jqery文件。
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关问题
为什么字体颜色在Eclipse上没有变化
2 回答
相关分类
Html/CSS
为什么字体颜色在Eclipse上没有变化
2 回答
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续