表单选择器 1. :button Selector 1. jQuery(":button") 2. 选择所有元素和类型为按钮的元素2. :checkbox Selector 1. jQuery(":checkbox") 2. 选择所有元素和类型为复选框的元素3. :checked Selector ...
分类:
Web程序 时间:
2019-08-22 01:19:26
阅读次数:
141
什么是枚举?java中枚举如何定义 枚举是将变量的值一一列举出来,变量的值只限定于列举出来的值,java中的枚举是jdk1.5后引入的,以前通常会在接口中定义静态常量的方式来表示枚举.我们只讨论1.5以后引入的枚举类.下面的例子定义了一个简单的枚举类用于表示四季.定义枚举使用关键字enum 可以看出 ...
分类:
其他好文 时间:
2019-08-19 20:48:08
阅读次数:
68
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>注册页面</title></head><body> <!-- <caption align="center" >注册页面</caption>--> <form ac ...
分类:
Web程序 时间:
2019-08-18 23:45:36
阅读次数:
149
Pants On Fire 题目描述 Donald and Mike are the leaders of the free world and haven’t yet (after half a year) managed to start a nuclear war. It is so grea ...
分类:
其他好文 时间:
2019-08-18 17:53:22
阅读次数:
98
Though the sore be healed, a scar may remain on her face, which makes her sad sometimes. Though the sore be healed, a scar may remain on her face, whi ...
分类:
其他好文 时间:
2019-08-18 10:07:40
阅读次数:
81
环境:最小化安装centos7 问题:docker 启动没问题,但是查询 镜像时报错 Error response from daemon: Get https://index.docker.io/v1/search?q=mysql&n=25: x509: certificate has expir ...
分类:
其他好文 时间:
2019-08-17 20:20:15
阅读次数:
1574
1.HTML表单 HTML 表单用于搜集不同类型的用户输入。 2.method和action是什麽意思。 <form method="post"(规定如何发送表单数据 常用值:get|post) action="result.html"(表示向何处发送表单数据)></form> 3.表单的元素格式 ...
分类:
Web程序 时间:
2019-08-10 21:27:42
阅读次数:
628
一、问题 在使用removeAttr()移除了radio的checked属性后,使用attr()重新增加不起作用; 二、解决 使用prop()重新配置该属性 注意:具有 true 和 false 两个属性的,如 checked, selected 或者 disabled 使用prop(),其他的使用 ...
分类:
Web程序 时间:
2019-08-10 19:36:25
阅读次数:
97
1.单选按钮 <input type="radio" name="xb" id="nan" checked="checked"/> <label for="nan">男</label> 注意 : 添加name属性实现单选效果 添加label标签实现选男也可以实现单选效果,前提是for属性与对应的单选 ...
分类:
Web程序 时间:
2019-08-10 17:06:17
阅读次数:
109