jQuery 表单选择器

jQuery 代码:

<script type="text/javaScript">
$(document).ready(function(){
$("#form1 input:enabled").val("这里变化了");//改变表单内可用<input> 元素
$("#form1 input:disabled").val("这里也变了"); //改变表单内不可用<input>元素
$("input:checked").length;//获取多选框选中的个数
$("select :selected").text();//获取下拉框选中的内容

$("#form2 :input").length; //获取表单元素的个数
$("#form2 :text").length; //获取表单内当行文本的个数
$("#form2 :password").length;//获取表单内密码框的个数
});
</script>

 

 

 

 

 

css 代码

<form action="#" id="form1">
可用元素:<input name="add" value="可用文本框"> <br/>
不可用元素:<input name="email" disabled="disabled" value="不可用文本框"> <br />
可用元素:<input name="che" value="可用文本框"> <br/>
不可用元素:<input name="name" disabled="disabled" value="不可用文本框"> <br />
多选框:<br/>
<input type="checkbox" name="newsletter" checked="checked" value="test1" />test1
<input type="checkbox" name="newsletter" value="test2" />test2
<input type="checkbox" name="newsletter" value="test3" />test3
<input type="checkbox" name="newsletter" checked="checked" value="test4" />test4
<input type="checkbox" name="newsletter" value="test5" />test5
<div></div>
<br /><br />
下拉列表1:<br />
<select name="test" multiple="multiple" style="height:100px">
<option>浙江</option>
<option selected="selected">湖南</option>
<option>浙江</option>
<option selected="selected">湖南</option>
<option>浙江</option>
<option>浙江</option>
</select>

<br /><br />
下拉列表2:<br />
<select name="test" multiple="multiple" style="height:100px">
<option>浙江</option>
<option>湖南</option>
<option>浙江</option>
<option selected="selected">湖南</option>
<option>浙江</option>
<option>浙江</option>
</select>
<div></div>
</form>
<br>
<br>
<br>
<br>
<br>
<form action="#" id="form2">
<input type="button" value="button" /> <br/>
<input type="checkbox" name="c" />1
<input type="checkbox" name="c" />2
<input type="checkbox" name="c" />3 <br/>
<input type="file" /><br/>
<input type="hidden" /> <div style="display:none">test</div> <br/>
<input type="image" /><br/>
<input type="password" /><br/>
<input type="radio" name="a" />1<input type="radio" name="a" />2 <br/>
<input type="reset" /><br/>
<input type="submit" value="提交" /><br/>
<input type="text" /><br/>
<select><option>option</option></select><br/>
<textarea></textarea><br/>
<button>Button</button><br/>
</form>

 

转载于:https://www.cnblogs.com/qdmaomao/p/4485509.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/291303.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

nodejs的内存管理,垃圾回收机制

2019独角兽企业重金招聘Python工程师标准>>> 要点记录&#xff1a; 1、网页js、命令行工具&#xff0c;快进快出的&#xff0c;即时内存泄露&#xff0c;无内存管理必要! 2、服务器端nodejs和其他正规语言一样存在内存泄露。 3、nodejs基于谷歌v8js引擎&#xff…

java实体中文字段_java - Spring JPA实体类是否可以包含不在数据库表中的非数据库字段 - SO中文参考 - www.soinside.com...

我在SpringBoot中使用Spring JPA和Spring Data Rest。我有一个称为用户的数据库表和该表的实体。我没有此应用程序的控制器。EntityTable(name "USER")public class User implements Serializable {IdGeneratedValue(strategy GenerationType.IDENTITY)Basic(optio…

Redis【第二篇】集群搭建

第一步&#xff1a;准备 1.安装包 ruby-2.4.0.tar.gz rubygems-2.6.10.tgz zlib-1.2.11.tar.gz redis-3.3.2.gem 2. 架构&#xff1a; 名称IP端口节点属性redisA192.168.6.1286379主节点redisB192.168.6.1289379从节点redisC192.168.6.1296379主节点redisD192.168.6.1299379从节…

LeetCode之Ransom Note

1、题目 Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the ransom note can be constructed from the magazines ; otherwise, it will return false. Each letter in th…

(转)java中对集合对象list的几种循环访问总结

Java集合的Stack、Queue、Map的遍历在集合操作中&#xff0c;常常离不开对集合的遍历&#xff0c;对集合遍历一般来说一个foreach就搞定了&#xff0c;但是&#xff0c;对于Stack、Queue、Map类型的遍历&#xff0c;还是有一些讲究的。最近看了一些代码&#xff0c;在便利Map时…

NET框架下如何使用PaddleOCRSharp

打开VSIDE,新建Windows窗体应用(.NETFramework)类型的项目&#xff0c;选择一个.NET框架&#xff0c;如.NETFramework 4.0&#xff0c;右键点击项目&#xff0c;选择属性》生成&#xff0c;目标平台设置成X64.菜单》工具》选项&#xff0c;Nuget包管理器》程序包管理&#xff0…

Android在全球的市场份额跃居全球第一

Android在全球的市场份额跃居全球第一2011年第一季度&#xff0c;Android在全球的市场份额首次超过塞班系统&#xff0c;跃居全球第一。 2012年2月数据&#xff0c;Android占据全球智能手机操作系统市场52.5%的份额&#xff0c;中国市场占有率为68.4%. 有兴趣的&#xff0c;可加…

LeetCode之Add Digits

1、题目 Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num 38, the process is like: 3 8 11, 1 1 2. Since 2 has only one digit, return it. 2、代码实现 public class Solution {publi…

Redis主从复制(Master-Slave Replication)

案例测试&#xff1a;1. Master新增网卡&#xff0c;修改server端配置IP : 192.168.40.128/24注释&#xff1a; bind&#xff0c;支持网络连接2. 新建虚机slave&#xff0c;配置网络&#xff0c;修改redis配置#slaveof <masterip> <masterport>slaveof 192.168.40.…

[原]TCP/UDP使用细节备忘

[原]TCP/UDP使用细节备忘首先&#xff0c;TCP和UDP的基本区别是TCP提供可靠的面向连接的流传输&#xff1b;UDP提供不可靠的基于数据包的传输&#xff1b;所谓可靠就是说发送端调用send后&#xff0c;数据就一定会发送给接收端。虽然这当中可能会消耗很长的时间&#xff0c;或者…

java程序员遇到的问题_JAVA程序员最常遇见的10个异常

程序员最不想遇到黑心老板外&#xff0c;异常也是难以不遇&#xff0c;现在列出10个最遇到的异常&#xff0c;大家可以参考一下。NO.1 java.lang.NullPointerException这个异常大家肯定都经常遇到&#xff0c;异常的解释是 "程序遇上了空指针 "&#xff0c;简单地说…

如何对一组 IP 地址 进行排序?

咨询区 Cracker我有一组如下IP地址。192.168.1.5 69.52.220.44 10.152.16.23 192.168.3.10 192.168.1.4 192.168.2.1我在寻找一个方法将他们排序成如下顺序。10.152.16.23 69.52.220.44 192.168.1.4 192.168.1.5 192.168.2.1回答区 Alex Aza对 ip 地址进行排序&#xff0c;大概…

LeetCode之Intersection of Two Arrays

1、题目 Given two arrays, write a function to compute their intersection. Example: Given nums1 [1, 2, 2, 1], nums2 [2, 2], return [2]. Note: Each element in the result must be unique.The result can be in any order.Subscribe to see which companies asked t…

如何为APK签名?

1.用来生成应用签名的文件①默认: debug.keystore > debug签名的应用程序不能在Android Market上架销售&#xff0c;它会强制你使用自己的签名。> 不同电脑使用此文件生成的签名不一样。那就意味着如果你换了机器进行apk版本升级&#xff0c;那么将会出现上面那种程序不能…

shell 杂记一(笨鸟)

查找子串cat /tmp/debug.log | perl -e while(<>) { if ($_ ~ /hd_uid(\d)/) { print "$1\n"; } } 匹配每行"hd_uid"后面的数字if [ ... ]then ...fiexit numcase $i in1) echo 1111;;2) echo 2222;;*) echo other;;esacbasename 返回…

基于 Azure 的认知服务将文本合成语音

基于 Azure 的认知服务将文本合成语音Intro前几天发了一个 .NET 20 周年祝福视频&#xff0c;语音是通过 Azure 的认知服务合成的&#xff0c;下面就来介绍一下如何将使用 Azure 的认识服务实现将文本合成为语音Prepare你可以在 Azure Portal 上创建一个免费的语音服务&#xf…

sql查询结果集根据指定条件排序的方法

oracle认为 null 最大。 升序排列&#xff0c;默认情况下&#xff0c;null值排后面。 降序排序&#xff0c;默认情况下&#xff0c;null值排前面。 有几种办法改变这种情况&#xff1a; &#xff08;1&#xff09;用 nvl 函数或decode 函数 将null转换为一特定值 &#xff08;2…

mysql怎么改字体编码_mysql怎么改字符编码?

mysql命令行修改字符编码1、修改数据库字符编码mysql> alter database mydb character set utf8 ;2、创建数据库时&#xff0c;指定数据库的字符编码mysql> create database mydb character set utf8 ;3、查看mysql数据库的字符编码mysql> show variables like charac…

LeetCode之Move Zeroes

1、题目 Given an array nums, write a function to move all 0s to the end of it while maintaining the relative order of the non-zero elements. For example, given nums [0, 1, 0, 3, 12], after calling your function, nums should be [1, 3, 12, 0, 0]. Note: You …

七种RAID技术

想把好多硬盘组在一起使用的基本方式为&#xff1a;连接所有硬盘&#xff0c;先向第一个硬盘中写数据&#xff0c;满了之后&#xff0c;再向第二个硬盘上写数据&#xff0c;如此只是简单的连通了多个硬盘。 再此基础上发展了RAID技术&#xff1a;由独立磁盘组成的具有冗余特性的…