优雅眼神

文章
4
资源
0
加入时间
2年10月24天

Python正则

import rem = re.search('[0-9]', 'a1b2c3d4e5')print m.group(0)m = re.sub('[0-9]', 'X', 'a1b2c3d4e5')print mm = re.split('[0-9]', 'a1b2c3d4e5')print list(m)m = re.findall('[...

html里的input属性,HTML中强大的input标签属性

用了许久的html,这个标签是最常用的标签之一。标签中type属性是必不可少的,以往我最常用的有 type="text"(单行文本输入) 类型、 type="button"(按钮类型)、 type="password"(密码输入框)等。却忽略了很多很实用却很少用到的属性,这里重新整理一下。在HTML5中,规定的 input type 属性值如下:1.button                定义...