弹出框上的TextArea

时间:2013-11-26 04:32:59

标签: javascript jquery html

我想用我自己的表单显示一个警告框或弹出框,比如,表格上应该有textarea和2个按钮,继续并取消,我该如何显示它并根据文本区域采取行动单击的文本和按钮,我该怎么做?

e.g。 http://www.w3schools.com/js/tryit.asp?filename=tryjs_prompt

这里有一个文本框,而不是那个,我想要一个textAreawith 2按钮,继续和取消。

由于

2 个答案:

答案 0 :(得分:1)

prompt(),您无法在其中添加textareaother elements

您可以使用jquery.dialog()

答案 1 :(得分:0)

有可能...... 用更多的研究来解决这个问题

http://jsfiddle.net/Xtreu/297/

with overlay:http://jsfiddle.net/Xtreu/270/

HTML:

<div id="confirmBox">
    <div class="overlay"></div>
    <div class="confirmBox">
        <div class="message"></div>
        <span class="button yes">Yes</span>
        <span class="button no">No</span>
    </div>
</div>

JS:

$(function () {
    $("form").submit(function (e) {
        e.preventDefault();
        var form = this;
        doConfirm("Are you sure?", function yes() {
            form.submit();
        }, function no() {
            // do nothing
        });
    });
});

CSS:

body { font-family: sans-serif; }
#confirmBox
{
    display: none;
}
.overlay
{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
}
.confirmBox
{
    background-color: #eee;
    border-radius: 5px;
    border: 1px solid #aaa;
    position: fixed;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    padding: 6px 8px 8px;
    box-sizing: border-box;
    text-align: center;
}
#confirmBox .button {
    background-color: #ccc;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #aaa;
    padding: 2px;
    text-align: center;
    width: 80px;
    cursor: pointer;
}
#confirmBox .button:hover
{
    background-color: #ddd;
}
#confirmBox .message
{
    text-align: left;
    margin-bottom: 8px;
}