当用户单击按钮时如何弹出文本区域?
我尝试过 PopBox 弹出文本区域,但 PopBox 的功能似乎不兼容与游戏系统。 (例如,我知道 alert();
和 prompt();
在 html 页面测试中有效,但在实际游戏中根本不会发生)
目前游戏已实现此确认框系统。有没有办法向其中添加文本区域?
如果没有,是否有其他 Jquery/JS 技巧/插件可以允许单击按钮时弹出文本区域框?
I've tried PopBox to have a textarea pop up, but the functionality of PopBox seems to be incompatible with the game system. (For example, I know for a fact that alert();
and prompt();
works in the html page testing, but does not happen at all in the actual game)
Currently the game has this confirm box system implemented. Is there a way to add a textarea to this?
If not, is there any other Jquery/JS tricks/plugins that will allow a textarea box to pop up when a button is clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不是专家,但我认为这是可能的:
或者...
要使用一个按钮切换 DIV,您可以这样做:
并且这不需要使用 JQuery 库。
希望它有帮助...
I'm no expert but I think this is possible:
OR...
To toggle the DIV with one button, you could do this:
And this doesn't need the JQuery library to use.
Hope it helps...
检查这个插件
jAlert
使用起来非常简单和干净,你可以做任何你想做的事想。
通过
jquery.alerts.js
文件中的文本区域更改输入很容易,搜索
'prompt'
大小写,然后更改通过
。textarea
输入我为自己做了这个,到目前为止一直在工作。
check this plugin
jAlert
very easy and clean to use, you can do whatever you want.
its easy to change the input by a textarea
in
jquery.alerts.js
file, search for'prompt'
case, and change theinput
bytextarea
.i made this for me and have been working so far.
你可以在页面上有一个,当单击按钮时插入一个文本区域框,像这样...
在原始 HTML 页面中,粘贴一个空白区域,也许像这样保留空间
然后,在按钮上放置一个 onClick 事件用您的文本区域替换innerHTML(或创建一个执行此操作的函数,并使用您的onClick事件调用它)。
You can have a on the page, which inserts a textarea box when the button is clicked, something like this...
In original HTML page, stick a blank area, maybe reserving space like so
Then, put an onClick event on your button which replaces the innerHTML with your textarea (or create a function that does it, and call it with your onClick event).
你可以尝试jquery对话框http://jqueryui.it/demos/dialog。
这会弹出一个覆盖层和一个对话框。您可以根据自己的喜好自定义此显示和交互。
you can try jquery dialog http://jqueryui.it/demos/dialog.
This pops open an overlay and a dialog. You can customize this display and interaction to your hearts desire.