提示中禁用自动完成功能
我目前正在使用 PhoneGap 开发 iPhone 的网络应用程序。我正在创建一款游戏,玩家必须记住他们的词汇。在我的代码的一部分中,iPhone正在js中显示提示,并且玩家必须正确写出一个单词。 我的代码:
var motPense = prompt('Which word are you thinking about ' + localStorage.joueur2 +' ?');
当我在一个游戏中工作时,你必须记住你的词汇,我想禁用“自动大写”,“自动完成”和“自动更正”,例如在这样的输入中:
<input type="text" autocorrect="off" autocapitalize="off">
有没有办法在提示,或者我必须显示一个带有输入的内容?
谢谢。
PS:抱歉我的近似英语
I am currently working on a webapp for iPhone with PhoneGap. I am creating a game where players have to remember their vocabulary. In a part of my code, the iPhone is displaying a prompt in js and the player has to write a word correctly.
My code :
var motPense = prompt('Which word are you thinking about ' + localStorage.joueur2 +' ?');
As I am working in a game where you have to remember your vocabulary, I want to disable "Autocapitalize", "Autocomplete" and "Autocorrect" such as in an input like this:
<input type="text" autocorrect="off" autocapitalize="off">
Is there any way to do this in a prompt, or I will have to display a with an input inside?
Thank you.
PS : Sorry for my approximative english
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 DOM 元素构建自己的提示;普通的 JavaScript Prompt() 是使用您无法设置样式或修改的本机代码生成的。
You'll have to build your own prompt out of DOM elements; a normal JavaScript prompt() is generated with native code that you can't style or modify.