我有一个 jquery 变量,其中包含动态创建复选框的 html 标签。现在根据我的需要,我必须在 jquery 的 .html 标记中添加此变量以显示对话框内的复选框。我的 .html 包含表单标记以在表单中包含复选框代码。
这是我的变量,其中包含 html 标签..
var chbx=<input type="checkbox" id="Mumbai" name="Mumbai" value="Mumbai" />Mumbai<br />
<input type="checkbox" id=" Delhi" name=" Delhi" value=" Delhi" /> Delhi<br />\
<input type="checkbox" id=" Bangalore" name=" Bangalore" value=" Bangalore" /> Bangalore<br />
这是我的 .html 标签,其中包含表单 ..
var $dialog = $('<div></div>').html("<form id='myform'>" +chbx+ "</form>")
.dialog({
autoOpen: false,
title: 'Select Sites',
buttons: {
"Submit": function() { $('form#myform').submit();},
"Cancel": function() {$(this).dialog("close");}
}
});
我试图附加像 +chbx+ 这样的变量,但它没有发生并显示空对话框..