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 とその逆の通信では動作しません。誰か助けてくれませんか?