如何用jQuery调用平板电脑的键盘?

时间:2012-10-22 15:50:32

标签: jquery asp.net-mvc tablet

我对调用tablet's keyboard有疑问。

我有一个DropDownList和Textbox。现在,当我选择DropDownList项目时,我想将焦点设置在文本框上并调用数字键盘。这一切都必须在不按文本框的情况下工作。

我使用ASP.NET MVCjQuery

谢谢。

3 个答案:

答案 0 :(得分:2)

将焦点设置到文本框以触发键盘的打开,这可能会有所帮助。 示例:http://ftlabs.github.com/fastclick/examples/focus.html 代码:https://github.com/ftlabs/fastclick

<input type="number">

<input type="tel">

在文本输入获得焦点时触发数字小键盘。

答案 1 :(得分:1)

我会尝试将焦点设置在onSelect上的文本框中(在下拉列表中)

答案 2 :(得分:0)

http://jsfiddle.net/VJeLY/

<select id="dropDownList">
<option>This</option>
<option>That</option>
</select>
<input type="number" id="text-inputId"/>​

$('#dropDownList').change(function(){
    $('#text-inputId').focus()
})​