WAP网页输入框的默认键盘类型控制

来源:互联网 发布:10年决赛科比数据 编辑:程序博客网 时间:2024/04/23 15:48

最近有用户反映手机网的输入框不够人性化,比如手机号、卡号输入框应该默认显示数字键盘,邮箱输入框应该默认显示邮箱键盘。

百度上对这样的资料介绍很多,基本上都和这个页面是一个意思 http://www.w3school.com.cn/html5/att_input_type.asp :

语法

<input type="value">

属性值

值描述button定义可点击的按钮(大多与 JavaScript 使用来启动脚本)checkbox定义复选框。color定义拾色器。date定义日期字段(带有 calendar 控件)datetime定义日期字段(带有 calendar 和 time 控件)datetime-local定义日期字段(带有 calendar 和 time 控件)month定义日期字段的月(带有 calendar 控件)week定义日期字段的周(带有 calendar 控件)time定义日期字段的时、分、秒(带有 time 控件)email定义用于 e-mail 地址的文本字段file定义输入字段和 “浏览…” 按钮,供文件上传hidden定义隐藏输入字段image定义图像作为提交按钮number定义带有 spinner 控件的数字字段password定义密码字段。字段中的字符会被遮蔽。radio定义单选按钮。range定义带有 slider 控件的数字字段。reset定义重置按钮。重置按钮会将所有表单字段重置为初始值。search定义用于搜索的文本字段。submit定义提交按钮。提交按钮向服务器发送数据。tel定义用于电话号码的文本字段。text默认。定义单行输入字段,用户可在其中输入文本。默认是 20 个字符。url定义用于 URL 的文本字段。

但是不能满足我的需求,在安卓下正常,但是在iPhone下就不行了。比如如果是卡号的话,按照这里所说,应该用type=”number”,但是我们卡号是0打头,这种情况下会输入框失去焦点时,自动删除开头的0。后来谷歌到一个外国网站有讲。http://sja.co.uk/2012/1/4/controlling-which-ios-keyboard-is-shown

Controlling which iOS keyboard is shown →

Note: This is a minor update to a post I made last year, migrated from a previous blog.

One of my pet hates (there are many), is being presented with the incorrect keyboard, or having auto capitalisation forced upon me, when entering information into web forms on my iPhone or iPad.  This is something that’s very easy to control and can be done so with a little sprinkle of HTML5.  You don’t even have to worry about old browsers – I’ve tested this to work perfectly well even in IE6.

The screenshots used in this post are from a UK based iPhone 4S running iOS5; previous versions of iPhone OS and the iPad will differ.

Text keyboard

iPhone text keyboard

Your standard text input field code will look something like this:

<input type="text"></input> 

Telephone keyboard

iPhone tel keyboard

In order to display the telephone keyboard, use this:

<input type="tel"></input> 

URL keyboard

iPhone web keyboard

For URLs you want this:

<input type="url"></input> 

Email keyboard

iPhone email keyboard

For email addresses, you want this:

<input type="email"></input> 

Numerical keyboard

iPhone numerical keyboard

And finally, for a simple numerical keyboard (similar to the telephone one but with no +, * and # key):

<input type="text" pattern="[0-9]*"></input> 

Other options

It’s also possible to control auto correct with the use of the following paramater:

autocorrect="off" 

Last, but by no means least, turning on or off auto capitalisation:

autocapitalize="off" 

So the next time you’re creating a login field that takes an email address, use something like this:

<input type="email" autocorrect="off" autocapitalize="off"></input> 

至于在安卓和苹果上的区分,可以采用php来判断用户当前的操作系统,然后分别给出不一样的输入框,函数如下:

//判断用户的客户端类型

function clientType(){
if(stristr($_SERVER['HTTP_USER_AGENT'],’Android’)) {
return “android”;
}else if(stristr($_SERVER['HTTP_USER_AGENT'],’iPhone’)){
return “ios”;
}else{
return “other”;
}
}

0 0
原创粉丝点击