我正在尝试使用getorgchart插件。我想删除显示在屏幕底部的'GetOrgChart‘超级链接。我已经尝试从getorgchart.js文件中删除它,但它仍然显示。这是主题的一部分吗?我怎样才能停止在我的网页上展示它?
请帮帮我。
发布于 2017-06-02 14:35:40
试试这个,它对我很有效。
在html页面中添加以下代码。
$(document).ready(function(e) {
setInterval(function(){ $('a[title="GetOrgChart jquery plugin"]').hide(); }, 10);
});发布于 2017-05-29 20:43:54
试试这个,
在orgchart.html页面中,粘贴以下代码片段
<div style="display: block; position: absolute; bottom: 15px; right: 0;z-index: 214748336480 !important; height: 25px; width: 100px; background: #333;"></div>根据您的喜好更改宽度、高度和背景。但确保z-index比我提到的要高,这是重要的一点。希望这能有所帮助。谢谢你。
发布于 2018-07-31 09:56:13
打开文件getorgchart.js,找到eval(eval("String.fromCharCode(blah3x...)"))并将其删除或添加注释。
https://stackoverflow.com/questions/37891730
复制相似问题