提示中禁用自动完成功能

发布于 2024-11-06 21:37:22 字数 454 浏览 0 评论 0原文

我目前正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-11-13 21:37:22

您必须使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文