在angularjs中,filter提供了格式化数据或者过滤数据的功能:1、请看下面简单的例子 <divng-controller="phoneListExtendController"> Ihave{{friends.length}}friends.Theyare: <inputtype="search"ng-model="q"placeholder="filterfriends..."/> <ul..
分类:
Web程序 时间:
2014-09-30 13:42:20
阅读次数:
220
在EditText里面设置属性 android:inputType="numberDecimal" 在某些三星手机(s5830i)导致其原生输入法奔溃的问题. 若是设置属性为android:inputType="number"则不会崩溃. 原来这些输入法调用不支持浮点数的,仅能支持整数的.
TextEdit设置监听
过滤 空串,非浮点数,开头为0(例如 0123.11)的情况
Str...
分类:
移动开发 时间:
2014-09-23 17:33:25
阅读次数:
179
我是一个警告,xml代码是:改成就好了。为什么,因为新版本SDK要求填写属性lableFor,类似于填写一个ID来绑定这个控件,第一句已经添加了一个id,直接用那个就行了This text field does not specify an inputType or a hint1 这样写的时候突....
分类:
其他好文 时间:
2014-09-10 02:41:09
阅读次数:
137
在开发的过程中,通常会用到EditText,如何让虚拟键盘来适应输入框中内容的类型,通常我们都会在xml文件中加入android:inputType=""。android:inputType="none"android:inputType="text"android:inputType="textC...
分类:
移动开发 时间:
2014-08-29 17:37:28
阅读次数:
245
前端:<html>
<body>
<formaction="/static/uploadList/upload.php"method="post"
enctype="multipart/form-data">
<labelfor="file">licenseImage:</label>
<inputtype="file"name="licenseImage[]"id="file1"/>
<inputtype="file"na..
分类:
其他好文 时间:
2014-08-27 19:00:18
阅读次数:
222
<formaction=""method="post"enctype="multipart/form-data">
请选择要上传的文件:<inputtype="file"name="myFile"value=""/><inputtype="submit"value="开始上传"/>
</form>
<?php
header("content-type:text/html;charset=utf-8");
echo"<pre..
分类:
其他好文 时间:
2014-08-12 17:38:15
阅读次数:
204
//文本类型,多为大写、小写和数字符号。 android:inputType="none"//输入普通字符 android:inputType="text"//输入普通字符 android:inputType="textCapCharacters"//输入普通字符 android:inputTyp....
分类:
其他好文 时间:
2014-08-12 12:50:24
阅读次数:
212
/**
* 禁止Edittext弹出软件盘,光标依然正常显示。
*/
public void disableShowSoftInput()
{
if (android.os.Build.VERSION.SDK_INT <= 10)
{
editText.setInputType(InputType.TYPE_NULL);
}
else { ...
分类:
移动开发 时间:
2014-08-09 18:52:58
阅读次数:
246
<scripttype="text/javascript"src="Web_Org/js/jquery-1.4.2.min.js"></script>
<scriptsrc="App_Common/PXEditor.js"type="text/javascript"></script>
$("#input1").inputlimitor({limit:10});
<inputtype="text"id="input1"/>
=======js..
分类:
其他好文 时间:
2014-08-04 14:40:37
阅读次数:
288
<html>
<head>
<scriptsrc="http://code.jquery.com/jquery-1.11.1.min.js"></script>
</head>
<body>
<divid="divckb">
<inputtype="checkbox"name="ckb1"value="1"/>张三
<inputtype="checkbox"name="ckb2"value="2"/>..
分类:
Web程序 时间:
2014-07-27 12:11:16
阅读次数:
285