1.3 HTML5新增的input类型 属性值说明 type="email" 限制用户输入必须为Email类型 <br/> type="url" 限制用户输入必须为URL类型 type="date" 限制用户输入必须为日期类型 type="time" 限制用户输入必须为时间类型 type="mont ...
分类:
Web程序 时间:
2021-02-22 12:08:30
阅读次数:
0
<input type="button" value="禁用文本框" id="btn"/> <input type="text" value="" id="txt"/> <script src="common.js"></script> <script> //点击按钮禁用这个文本框 document ...
分类:
Web程序 时间:
2021-02-22 12:07:15
阅读次数:
0
<body> <input type="text" id="t1" > <br> <input type="text" id="t2" > </body> <script> document.getElementById('t1').oninput = function(){ document.ge ...
分类:
Web程序 时间:
2021-02-22 12:05:55
阅读次数:
0
更多事件:点击查询 load事件: <script type="text/javascript"> //整个页面窗口加载完成之后(所有标签加载完成) window.onload = function(){ //防止 js在前,标签在后的情况,js执行 时 标签没有加载完成 // alert('我加载 ...
分类:
Web程序 时间:
2021-02-22 12:00:37
阅读次数:
0
1.浏览器 浏览器是可以将网页的内容呈现(渲染)给用户,并且能够让用户与网页进行交互的一个软件。 2.服务器 服务器是一台配置比我们普通电脑更高的电脑,它专门用于存储数据,访问者可以通过访问服务器获得服务器上存储的资源。而且服务器是24小时不断电的,一旦(电脑)关机了,就无法访问服务器了。 3.访问 ...
分类:
Web程序 时间:
2021-02-22 11:59:02
阅读次数:
0
NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_camgeom.h> static int select_filter_proc_fn(tag_t object, int type[3 ...
分类:
移动开发 时间:
2021-02-20 12:37:26
阅读次数:
0
1. 接口 ******接口是一种类型go提倡面向接口编程 2. 接口格式 type 接口类型名 interface{ 方法名1( 参数列表1 ) 返回值列表1 方法名2( 参数列表2 ) 返回值列表2 … } 接口名:使用type将接口定义为自定义的类型名。Go语言的接口在命名时,一般会在单词后面 ...
分类:
其他好文 时间:
2021-02-20 12:18:06
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>正则表达式测试</title> <link rel="stylesheet" href="b ...
分类:
其他好文 时间:
2021-02-20 12:01:53
阅读次数:
0
1、修改字段名: alter table 表名 rename column A to B 2、修改字段类型: alter table 表名 alter column 字段名 type not null 3、修改字段默认值 alter table 表名 add default (0) for 字段名 ...
分类:
数据库 时间:
2021-02-20 11:58:41
阅读次数:
0
import pymongo db_configs = { 'type': 'mongo', 'host': '127.0.0.1', 'port': '27017', "user": "", "password": "", 'db_name': 'spider' } class MongoPipe ...
分类:
其他好文 时间:
2021-02-19 13:41:33
阅读次数:
0