需要将选择字段添加到MsgBox jquery
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Javascript 代码中找到这一行:
并添加
, select
作为 jQuery 选择器以获取以下内容:和 CSS:
Find this line in the Javascript code:
and add
, select
as a jQuery selector to get this:and CSS: