需要将选择字段添加到MsgBox jquery

发布于 2024-11-08 04:49:40 字数 693 浏览 1 评论 0原文

我需要使用 jQuery 将选择字段添加到 MsgBox。有谁知道怎么办?

if (input.type == 'checkbox')
{
    iLabel = input.label ? '<label class="' + this.options.name + '-label">' : '';
    fLabel = input.label ? input.label + '</label>' : '';
    input.value = input.value === undefined ? '1' : input.value;
    iName  = input.name === undefined ? this.options.name + '-label-' + i : input.name;
    this.esqueleto.inputs.append($(iLabel + '<input type="' + input.type + 
        '" style="display: inline; width: auto;" name="' + iName + '" value="' + 
        input.value + '" autocomplete="off"/>' + fLabel));
}

我将其更改为选择字段,但在通信 PHP > 时不起作用jQuery 反之亦然。 有人可以帮忙吗?

I need to add select fields to MsgBox with jQuery. Does anyone know how ?

if (input.type == 'checkbox')
{
    iLabel = input.label ? '<label class="' + this.options.name + '-label">' : '';
    fLabel = input.label ? input.label + '</label>' : '';
    input.value = input.value === undefined ? '1' : input.value;
    iName  = input.name === undefined ? this.options.name + '-label-' + i : input.name;
    this.esqueleto.inputs.append($(iLabel + '<input type="' + input.type + 
        '" style="display: inline; width: auto;" name="' + iName + '" value="' + 
        input.value + '" autocomplete="off"/>' + fLabel));
}

I changed it to select fields, but it does not work when communicating PHP > jQuery and vice versa.
Could someone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鹿港巷口少年归 2024-11-15 04:49:40
if (input.type == 'checkbox') {
    iLabel = input.label ? '<label class="' + this.options.name + '-label">': '';
    fLabel = input.label ? input.label + '</label>': '';
    input.value = input.value === undefined ? '1': input.value;
    iName = input.name === undefined ? this.options.name + '-label-' + i: input.name;
    this.esqueleto.inputs.append($(iLabel + '<input type="' + input.type + '" style="display:inline; width:auto;" name="' + iName + '" value="' + input.value + '" autocomplete="off"/> ' + fLabel))
} else if ( input.type == 'select' ) {
    iLabel = input.label ? '<label class="' + this.options.name + '-label">' + input.label: '';
    fLabel = input.label ? '</label>': '';
    input.value = input.value === undefined ? '': input.value;
    iName = input.name === undefined ? this.options.name + '-select-' + i: input.name;
    this.esqueleto.inputs.append($(iLabel + '<select name="' + iName + '"></select>' + fLabel));
    $.each(input.options, $.proxy(function(ip, ap) {
        ap.value = ap.value === undefined ? '': ap.value;
        iName = ap.name === undefined ? this.options.name + '-option-' + ip: ap.name;
        $('select[name=' + input.name + ']').append($('<option value="' + ap.value + '">' + ap.label + '</option>'))
    }, this));
}

inputs  : [
    { type: "select", name: "select", label: "select:", options: [{ label: "option1", value: "option1" },{ label: "option2", value: "option2" }] }
]

在 Javascript 代码中找到这一行:

this.close(this.toArguments($('input', this.esqueleto.inputs)))

并添加 , select 作为 jQuery 选择器以获取以下内容:

this.close(this.toArguments($('input, select', this.esqueleto.inputs)))

和 CSS:

.jquery-msgbox-inputs select
{
    display: block;
    padding: 3px 2px;
    border: 1px solid #dddddd;
    margin: 3px 0 6px 0;
    width: 97%;
}
if (input.type == 'checkbox') {
    iLabel = input.label ? '<label class="' + this.options.name + '-label">': '';
    fLabel = input.label ? input.label + '</label>': '';
    input.value = input.value === undefined ? '1': input.value;
    iName = input.name === undefined ? this.options.name + '-label-' + i: input.name;
    this.esqueleto.inputs.append($(iLabel + '<input type="' + input.type + '" style="display:inline; width:auto;" name="' + iName + '" value="' + input.value + '" autocomplete="off"/> ' + fLabel))
} else if ( input.type == 'select' ) {
    iLabel = input.label ? '<label class="' + this.options.name + '-label">' + input.label: '';
    fLabel = input.label ? '</label>': '';
    input.value = input.value === undefined ? '': input.value;
    iName = input.name === undefined ? this.options.name + '-select-' + i: input.name;
    this.esqueleto.inputs.append($(iLabel + '<select name="' + iName + '"></select>' + fLabel));
    $.each(input.options, $.proxy(function(ip, ap) {
        ap.value = ap.value === undefined ? '': ap.value;
        iName = ap.name === undefined ? this.options.name + '-option-' + ip: ap.name;
        $('select[name=' + input.name + ']').append($('<option value="' + ap.value + '">' + ap.label + '</option>'))
    }, this));
}

inputs  : [
    { type: "select", name: "select", label: "select:", options: [{ label: "option1", value: "option1" },{ label: "option2", value: "option2" }] }
]

Find this line in the Javascript code:

this.close(this.toArguments($('input', this.esqueleto.inputs)))

and add , select as a jQuery selector to get this:

this.close(this.toArguments($('input, select', this.esqueleto.inputs)))

and CSS:

.jquery-msgbox-inputs select
{
    display: block;
    padding: 3px 2px;
    border: 1px solid #dddddd;
    margin: 3px 0 6px 0;
    width: 97%;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文