我正在尝试在JavaScript中创建一个模态并使用roxy文件管理器为我的网站管理面板。模态对话框未打开。
代码
<script>
function openCustomRoxy2(){
$('#roxyCustomPanel2').dialog({modal:true, width:875,height:600});
}
function closeCustomRoxy2(){
$('#roxyCustomPanel2').dialog('close');
}
</script>
<input type="text" id="txtSelectedFile" value="Click here to select a
file" onclick="openCustomRoxy2()">
<div id="roxyCustomPanel2" >
<iframe src="fileman/index.html?integration=custom&type=files&txtFieldId=txtSelectedFile" ></iframe>
</div>
dailog没有打开。
答案 0 :(得分:0)
如果JavaScript中存在错误,则会加载模态。这不一定必须在加载模态的代码中,但它将在JS中添加。因此,在您加载页面之后,您需要查找任何开发人员窗口中显示的JS错误,如(firebug / console)或develeoper工具/控制台(chrome),以查看错误。首先修复JS错误,你的代码很可能会开始工作。