要在artdialog中使用iframe,可以按照以下步骤操作:
<link rel="stylesheet" href="path/to/artdialog.css">
<script src="path/to/artdialog.js"></script>
<button id="openDialog">打开对话框</button>
$('#openDialog').click(function() {
var dialog = art.dialog({
title: '对话框标题',
content: '<iframe src="path/to/your/iframe.html" width="100%" height="100%"></iframe>',
width: 800,
height: 600,
lock: true
});
});
在上面的代码中,path/to/your/iframe.html
是你要加载的iframe页面的地址,可以根据实际情况进行替换。通过设置width
和height
属性可以控制对话框的大小,lock
属性可以设置是否显示遮罩层。