javascript实现的弹出层背景置灰 模拟(easyui dialog)
页面比较丑,只把功能实现了。^ ^ 代码如下: <title>模仿easyui dialog的效果</title> [removed] //取得页面元素 var getElement = function() { return document.getElementById(arguments[0]) || false; } function openDialog(dialogId) { var maskId = “mask”; //如果有,先删除原来的 if (getElement(dialogId)) { document.removeChild(getEleme
用户评论