我有一个自动生成的 html 模板:
var html = engagement_tech_file_upload.file_upload({ file_types : file_types, selected_file_type: selected_file_type });
单击一个按钮,将出现一个对话框:
$('#multiple-file').live('click', function () {
$(".tech-file-upload-dialog").html('<iframe>'+html+'</iframe>').dialog('open');
});
这将在 iframe 中包含 html 模板。但这不起作用,如何正确执行此操作?