1 在使用EditText控件时,经常需要指定android:inputType属性,比如用户名输入框,密码输入框等。 而不同的android:inputType属性有时候会有使用不同的字体 EditText etPassword = findViewById(R.id.etPassword); e ...
分类:
移动开发 时间:
2017-07-04 12:15:25
阅读次数:
219
理论 简单的HTTP POST 大家通过HTTP向服务器发送POST请求提交数据,都是通过form表单提交的,代码如下: <form method="post"action="http://w.sohu.com" > <inputtype="text" name="txt1"> <inputtype ...
分类:
Web程序 时间:
2017-07-01 10:05:09
阅读次数:
322
简单的HTTP POST 大家通过HTTP向服务器发送POST请求提交数据,都是通过form表单提交的,代码如下: <form method="post"action="http://w.sohu.com" > <inputtype="text" name="txt1"> <inputtype="t ...
分类:
编程语言 时间:
2017-06-25 23:57:06
阅读次数:
1972
EditText的XML属性以及类中方法 android:inputType setInputType(int type) 限制输入类型 number:整数类型 numberDecimal:浮点数类型 date:日期类型 text:文本类型(默认) phone:拨号键盘 textPassword:密 ...
分类:
移动开发 时间:
2017-06-25 16:08:08
阅读次数:
210
一、onblur1.1说明onblur属性在元素失去焦点时触发,onblur常用于表单验证代码(例如用户离开表单字段)。1.2示例<inputtype="text"name=""id=""onblur="javascript:alert(‘onblur‘);">二、onfocus2.1说明onfocus属性在元素获得焦点时触发,onfocus常用于<input>、..
分类:
编程语言 时间:
2017-06-24 20:53:42
阅读次数:
152
<inputtype="checkbox"name="items"value="足球"/>足球<inputtype="checkbox"name="items"value="篮球"/>篮球<inputtype="checkbox"name="items"value="乒乓球"/>乒乓球<inputtype="checkbox"name="items"value="棒球"/>棒球<inputtype="button"id=..
分类:
其他好文 时间:
2017-06-23 15:42:36
阅读次数:
85
一、简介SpringBoot默认使用springMVC包装好的解析器进行上传二、代码实现2.1、from表单<formmethod="POST"enctype="multipart/form-data"action="/file/upload">
文件:<inputtype="file"name="roncooFile"/>
<inputtype="submit"value="上传"/>
</form&..
分类:
编程语言 时间:
2017-06-18 21:55:15
阅读次数:
466
原版jasnybootstrap无法进行多张图片上传后的预览,所以借鉴了一些别的方法。HTML<v-formclass="manage-file"id="manage-file"ref="form"><inputtype="hidden"name="pubprojectid":value="project.id"></input><divclass="form-group"><labelclass=..
分类:
Web程序 时间:
2017-06-13 14:42:30
阅读次数:
280
在android学习中遇到的一些问题,记录一下。 1、解决edittext感叹号的问题。 This text field does not specify an inputType or a hint 加入以下代码就可以解决: android:hint="@null" 2、解决android4.0后 ...
分类:
移动开发 时间:
2017-06-08 22:32:50
阅读次数:
217
关键词:一对一视频录制,Ajax实现注册一、一对一视频录制1.1需要做的二、network2.1Ajax实现注册,如下:1)注册html<h3>注册请填写:</h3>用户名:<inputtype="text"placeholder="请输入用户名"id="username1"name="username"><br>昵称:<inputtyp..
分类:
Web程序 时间:
2017-05-27 18:03:57
阅读次数:
231