easyui dialog 第二次打开不加载href问题

function ShowTempletDialogNew(width, height, title, htmlUrl) {
debugger;
$('#dlg').dialog({
'title' : title,
'height' : height,
'width' : width,
//'top':7,//$(document).scrollTop() + ($(window).height()-570) * 0.5,
//'left': $(document).scrollTop() + ($(window).width()-900) * 0.5,
'minimizable' : false,
'maximizable' : false,
'minimizable' : true,
'cache' : false,
'href' : htmlUrl,
'modal' : true,
onLoad:function(){

//设置其他数据

//OnInitSubWindow();
}

    ,buttons: [{
        text: '确  定',
        iconCls: 'icon-ok',
        handler: function () {
            comfirm();
        }
    }, {
        text: '取  消',
        iconCls: 'icon-cancel',
        handler: function () {
            $('#dlg').dialog('close');
        }
    }]
    /* */
});

}

f12看下console有啥错误提示没.

错误是什么啊。请截图也行

图片说明这是第一次点击后的错误 第一次页面是加载html了 第二次以后没提示错误 就直接加载了一个空白页
大神们帮忙看下 谢谢