是否可以在浏览器中显示一个输入窗口,向用户请求信息?
我想使用 Javascript 或 jQuery 进行与 Java 中的 JOptionPane.showInputDialog()
相同的操作。
显示一个输入窗口以供用户输入一些信息。
我该怎么做?
I want to do with Javascript or jQuery the same I do with JOptionPane.showInputDialog()
in Java.
Show an input window to the user enter some information.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
prompt(text, value)
这。You can use
prompt(text, value)
for this.如果您正在寻找比仅仅提示(昆汀回答的)更时尚或更复杂的东西,那么这是一个非常复杂的问题,可能太复杂而无法在这里回答。
尝试在谷歌上搜索“jquery modal form”。你会发现很多教程。
像这个。
If you're looking for something more stylish or involved than merely a prompt (which Quentin answered with), that's a very involved question that's likely too complex to answer here.
Try doing a google search for "jquery modal form". You'll find lots of tutorials.
Like this one.