当用户单击按钮时如何弹出文本区域?

发布于 2024-12-09 14:18:10 字数 387 浏览 0 评论 0原文

我尝试过 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 技术交流群。

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

发布评论

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

评论(4

嘴硬脾气大 2024-12-16 14:18:10

我不是专家,但我认为这是可能的:

<div id="textAreaDiv" style="visibility:hidden;"><textarea></textarea></div>

<input type="button" onClick="showTextArea()">
<input type="button" onClick="hideTextArea()">

<script>
function showTextArea() {
document.getElementById('textAreaDiv').style.visibility="visible";
}

function hideTextArea() {
document.getElementById('textAreaDiv').style.visibility="hidden";
}
</script>

或者...

要使用一个按钮切换 DIV,您可以这样做:

<script>
function showHideTextarea() {
if (document.getElementById('textAreaDiv').style.visibility="hidden")
{
document.getElementById('textAreaDiv').style.visibility="visible";
}
else
{
document.getElementById('textAreaDiv').style.visibility="hidden";
}
}
</script>

并且这不需要使用 JQuery 库。

希望它有帮助...

I'm no expert but I think this is possible:

<div id="textAreaDiv" style="visibility:hidden;"><textarea></textarea></div>

<input type="button" onClick="showTextArea()">
<input type="button" onClick="hideTextArea()">

<script>
function showTextArea() {
document.getElementById('textAreaDiv').style.visibility="visible";
}

function hideTextArea() {
document.getElementById('textAreaDiv').style.visibility="hidden";
}
</script>

OR...

To toggle the DIV with one button, you could do this:

<script>
function showHideTextarea() {
if (document.getElementById('textAreaDiv').style.visibility="hidden")
{
document.getElementById('textAreaDiv').style.visibility="visible";
}
else
{
document.getElementById('textAreaDiv').style.visibility="hidden";
}
}
</script>

And this doesn't need the JQuery library to use.

Hope it helps...

各自安好 2024-12-16 14:18:10

检查这个插件

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 the input by textarea.

i made this for me and have been working so far.

吾性傲以野 2024-12-16 14:18:10

你可以在页面上有一个,当单击按钮时插入一个文本区域框,像这样...

在原始 HTML 页面中,粘贴一个空白区域,也许像这样保留空间

<div id="Input_Area">
<br>
<br>
</div>

然后,在按钮上放置一个 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

<div id="Input_Area">
<br>
<br>
</div>

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).

空城仅有旧梦在 2024-12-16 14:18:10

你可以尝试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.

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