作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有吗
mode: "number"
jquery.mobile.simpledialog.js 的选项?
即:我需要向用户询问一个数字,并且我希望移动键盘处于“仅数字模式”...
最佳答案
要显示数字键盘,请将 type="number"
添加到 input
标记。在 SimpleDialog 中,您可以使用自由格式显示,例如:
$(document).delegate('#opendialog', 'click', function() {
$('<div>').simpledialog2({
mode: 'blank',
headerText: 'Some Stuff',
headerClose: true,
blankContent :
"<input type='number' /> " +
"<a rel='close' data-role='button' href='#'>Close</a>"
})
})
在支持它的浏览器上,当尝试在 input
标记中输入内容时,您将看到一个数字键盘。但这不会限制桌面浏览器上的用户输入文本。您必须单独检查这一点。
查看此jsFiddle示例。
关于javascript - JQM简单对话框: how to prompt for a number?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12391482/
我是一名优秀的程序员,十分优秀!