我对调用tablet's keyboard
有疑问。
我有一个DropDownList和Textbox。现在,当我选择DropDownList项目时,我想将焦点设置在文本框上并调用数字键盘。这一切都必须在不按文本框的情况下工作。
我使用ASP.NET MVC
和jQuery
。
谢谢。
答案 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)
<select id="dropDownList">
<option>This</option>
<option>That</option>
</select>
<input type="number" id="text-inputId"/>
$('#dropDownList').change(function(){
$('#text-inputId').focus()
})