码迷,mamicode.com
首页 >  
搜索关键字:input    ( 33491个结果
LeetCode - Make The String Great
Given a string s of lower and upper case English letters. A good string is a string which doesn't have two adjacent characters s[i] and s[i + 1] where ...
分类:其他好文   时间:2021-02-22 12:38:24    阅读次数:0
1.3 HTML5新增的input类型
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
1.4 HTML5新增的表单属性
1.4 HTML5新增的表单属性 属性值说明 required required 表单拥有该属性表示其内容不能为空,必填 placeholder 提示文本 表单的提示信息,存在默认值将不显示(修改文字颜色input::placeholder{color:#fff}) autofocus autofo ...
分类:Web程序   时间:2021-02-22 12:08:02    阅读次数:0
js点击按钮禁用文本框
<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
js两个input框内容同步
<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
2021.2.19cf痛苦经历
A. Shifting Stacks time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You have n stacks of b ...
分类:其他好文   时间:2021-02-20 11:52:20    阅读次数:0
arm-none-eabi-objcopy 使用说明
译文 NAME objcopy - copy and translate object files 概要 objcopy [-F bfdname|--target=bfdname] [-I bfdname|--input-target=bfdname] [-O bfdname|--output-ta ...
分类:其他好文   时间:2021-02-20 11:43:56    阅读次数:0
ESP8266的输入和输出
ESP8266的输入和输出 ESP8266读取数字输入和数字输出 ...
分类:其他好文   时间:2021-02-19 13:07:35    阅读次数:0
python中break语句
1、 aaa = "123" answer = input("please input the answer:") while True: if answer == aaa: break answer = input("please input the answer,again:") print(" ...
分类:编程语言   时间:2021-02-18 13:38:19    阅读次数:0
基于basys2的按键消抖
基于basys2的按键消抖模块,basys2的按键是高电平“1”表示按下. `module key_filter( clk,sys_rst_n,key_en,key_in); input clk; input sys_rst_n; input key_in; output key_en; //这两段 ...
分类:其他好文   时间:2021-02-18 13:26:52    阅读次数:0
33491条   上一页 1 ... 24 25 26 27 28 ... 3350 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!