jquery 操作checkbox、radio、select 小结
jquery radio的操作:
<code class="language-html"><input type="radio" name="rd" checked="checked" id="rd1" value="rd1"/> <input type="radio" name="rd" id="rd2" value="rd2"/> <input type="radio" name="rd" id="rd3" value="rd3"/></code>
1.获取选中值,三种方法都可以:
<code class="language-javascript">$('input:radio:checked').val(); $("input[type='radio']:checked").val(); $("input[name='rd']:checked").val(); </code>
2.设置第一个Radio为选中值:
<code class="language-javascript">$('input:radio:first').attr('checked', 'checked'); 或者 $('input:radio:first').attr('checked', 'true');</code>
注: attr("checked",'checked')= attr("checked", 'true')= attr("checked", true)
3.设置最后一个Radio为选中值:
<code class="language-javascript">$('input:radio:last').attr('checked', 'checked'); 或者 $('input:radio:last').attr('checked', 'true'); </code>
4.根据索引值设置任意一个radio为选中值:
<code class="language-javascript">$('input:radio').eq(索引值).attr('checked', 'true');索引值=0,1,2.... 或者 $('input:radio').slice(1,2).attr('checked', 'true'); </code>
5.根据Value值设置Radio为选中值
<code class="language-javascript">$("input:radio[value='rd2']").attr('checked','true'); 或者 $("input[value='rd2']").attr('checked','true'); </code>
6.删除Value值为rd2的Radio
<code class="language-javascript">$("input:radio[value='rd2']").remove(); </code>
7.删除第几个Radio
<code class="language-javascript">$("input:radio").eq(索引值).remove();索引值=0,1,2.... 如删除第3个Radio:$("input:radio").eq(2).remove(); </code>
8.遍历Radio
<code class="language-javascript">$('input:radio').each(function(index,domEle){ //写入代码 }); </code>
jquery select的操作
<code class="language-html"><select id="sel"> <option value="1" selected="selected">a</option> <option value="2">b</option> <option value="3">c</option> <option value="4">d</option> <option value="5">e</option> </select></code>
1. 获取选中项:
获取选中项的Value值:
<code class="language-javascript">$('select#sel option:selected').val(); 或者 $('select#sel').find('option:selected').val(); </code>
获取选中项的Text值:
<code class="language-javascript">$('select#seloption:selected').text(); 或者 $('select#sel').find('option:selected').text();</code>
2. 获取当前选中项的索引值:
<code class="language-javascript">$('select#sel').get(0).selectedIndex; </code>
3. 获取当前option的最大索引值:
<code class="language-javascript">$('select#sel option:last').attr("index") </code>
4. 获取DropdownList的长度:
<code class="language-javascript">$('select#sel')[0].options.length; 或者 $('select#sel').get(0).options.length; </code>
5. 设置第一个option为选中值:
<code class="language-javascript">$('select#sel option:first').attr('selected','true') 或者 $('select#sel')[0].selectedIndex = 0; </code>
6. 设置最后一个option为选中值:
<code class="language-javascript">$('select#sel option:last).attr('selected','true') </code>
7. 根据索引值设置任意一个option为选中值:
<code class="language-javascript">$('select#sel')[0].selectedIndex =索引值;索引值=0,1,2.... </code>
8. 设置Value=4 的option为选中值:
<code class="language-javascript">$('select#sel').attr('value','4'); 或者 $("select#sel option[value='4']").attr('selected', 'true'); </code>
9. 删除Value=3的option:
<code class="language-javascript">$("select#sel option[value='3']").remove(); </code>
10.删除第几个option:
<code class="language-javascript">$(" select#sel option ").eq(索引值).remove();索引值=0,1,2.... 如删除第3个Radio: $(" select#sel option ").eq(2).remove(); </code>
11.删除第一个option:
<code class="language-javascript">$(" select#sel option ").eq(0).remove(); 或者 $("select#sel option:first").remove();</code>
12. 删除最后一个option:
<code class="language-javascript">$("select#sel option:last").remove(); </code>
13. 删除dropdownlist:
<code class="language-javascript">$("select#sel").remove(); </code>
14.在select后面添加一个option:
<code class="language-javascript">$("select#sel").append("<option value='6'>f</option>");</code>
15. 在select前面添加一个option:
<code class="language-javascript">$("select#sel").prepend("<option value='0'>0</option>"); </code>
16. 遍历option:
<code class="language-javascript">$(' select#sel option ').each(function (index, domEle) { //写入代码 }); </code>
jquery checkbox的操作
<code class="language-html"><input type="checkbox" name="ck1" checked="checked" id="ck1" value="1"/> <input type="checkbox" name="ck2" id="ck2" value="2"/> <input type="checkbox" name="ck3" id="ck3" value="3"/> <input type="checkbox" name="ck4" id="ck4" value="4"/></code>
1. 获取单个checkbox选中项(三种写法):
<code class="language-javascript">$("input:checkbox:checked").val() 或者 $("input:[type='checkbox']:checked").val(); 或者 $("input:[name='ck']:checked").val(); </code>
2. 获取多个checkbox选中项:
<code class="language-javascript">$('input:checkbox').each(function() { if ($(this).attr('checked') ==true) { alert($(this).val()); } }); </code>
3. 设置第一个checkbox 为选中值:
<code class="language-javascript">$('input:checkbox:first').attr("checked",'checked'); 或者 $('input:checkbox').eq(0).attr("checked",'true'); </code>
4. 设置最后一个checkbox为选中值:
<code class="language-javascript">$('input:radio:last').attr('checked', 'checked'); 或者 $('input:radio:last').attr('checked', 'true'); </code>
5. 根据索引值设置任意一个checkbox为选中值:
<code class="language-javascript">$('input:checkbox).eq(索引值).attr('checked', 'true');索引值=0,1,2.... 或者 $('input:radio').slice(1,2).attr('checked', 'true');</code>
6. 选中多个checkbox:
同时选中第1个和第2个的checkbox:
<code class="language-javascript">$('input:radio').slice(0,2).attr('checked','true'); </code>
7. 根据Value值设置checkbox为选中值:
<code class="language-javascript">$("input:checkbox[value='1']").attr('checked','true'); </code>
8. 删除Value=1的checkbox:
<code class="language-javascript">$("input:checkbox[value='1']").remove(); </code>
9. 删除第几个checkbox:
<code class="language-javascript">$("input:checkbox").eq(索引值).remove();索引值=0,1,2.... 如删除第3个checkbox: $("input:checkbox").eq(2).remove(); </code>
10.遍历checkbox:
<code class="language-javascript">$('input:checkbox').each(function (index, domEle) { //写入代码 }); </code>
11.全部选中
<code class="language-javascript">$('input:checkbox').each(function() { $(this).attr('checked', true); }); </code>
12.全部取消选择
<code class="language-javascript">$('input:checkbox').each(function () { $(this).attr('checked',false); });</code>

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

jQuery引用方法详解:快速上手指南jQuery是一个流行的JavaScript库,被广泛用于网站开发中,它简化了JavaScript编程,并为开发者提供了丰富的功能和特性。本文将详细介绍jQuery的引用方法,并提供具体的代码示例,帮助读者快速上手。引入jQuery首先,我们需要在HTML文件中引入jQuery库。可以通过CDN链接的方式引入,也可以下载

jQuery中如何使用PUT请求方式?在jQuery中,发送PUT请求的方法与发送其他类型的请求类似,但需要注意一些细节和参数设置。PUT请求通常用于更新资源,例如更新数据库中的数据或更新服务器上的文件。以下是在jQuery中使用PUT请求方式的具体代码示例。首先,确保引入了jQuery库文件,然后可以通过以下方式发送PUT请求:$.ajax({u

jQuery如何移除元素的height属性?在前端开发中,经常会遇到需要操作元素的高度属性的需求。有时候,我们可能需要动态改变元素的高度,而有时候又需要移除元素的高度属性。本文将介绍如何使用jQuery来移除元素的高度属性,并提供具体的代码示例。在使用jQuery操作高度属性之前,我们首先需要了解CSS中的height属性。height属性用于设置元素的高度

标题:jQuery小技巧:快速修改页面所有a标签的文本在网页开发中,我们经常需要对页面中的元素进行修改和操作。在使用jQuery时,有时候需要一次性修改页面中所有a标签的文本内容,这样可以节省时间和精力。下面将介绍如何使用jQuery快速修改页面所有a标签的文本,同时给出具体的代码示例。首先,我们需要引入jQuery库文件,确保在页面中引入了以下代码:<

标题:使用jQuery修改所有a标签的文本内容jQuery是一款流行的JavaScript库,被广泛用于处理DOM操作。在网页开发中,经常会遇到需要修改页面上链接标签(a标签)的文本内容的需求。本文将介绍如何使用jQuery来实现这个目标,并提供具体的代码示例。首先,我们需要在页面中引入jQuery库。在HTML文件中添加以下代码:

美国宇航局通过最近的火箭发射证实了地球周围存在全球电场。这是一件大事,因为这是对一种长期理论化但从未被观察到的现象的首次直接测量

如何判断jQuery元素是否具有特定属性?在使用jQuery操作DOM元素时,经常会遇到需要判断元素是否具有某个特定属性的情况。这种情况下,我们可以借助jQuery提供的方法来轻松实现这一功能。下面将介绍两种常用的方法来判断一个jQuery元素是否具有特定属性,并附上具体的代码示例。方法一:使用attr()方法和typeof操作符//判断元素是否具有特定属

jQuery是一种流行的JavaScript库,被广泛用于处理网页中的DOM操作和事件处理。在jQuery中,eq()方法是用来选择指定索引位置的元素的方法,具体使用方法和应用场景如下。在jQuery中,eq()方法选择指定索引位置的元素。索引位置从0开始计数,即第一个元素的索引是0,第二个元素的索引是1,依此类推。eq()方法的语法如下:$("s
