在 getorgchart jquery 插件中如何删除屏幕底部的 getorgchart 超链接
In getorgchart jquery plugin how to remove the getorgchart hyperlink present at the bottom of the screen
我正在尝试使用 getorgchart jquery 插件。我想删除显示在屏幕底部的 'GetOrgChart' 超链接。我已尝试将其从 getorgchart.js 文件中删除,但它仍然出现。它是主题的一部分吗?我怎样才能停止在我的网页上显示它???
请帮忙..
要删除 getorgchart 徽标,您需要购买许可证 http://www.getorgchart.com/Buy
试试这个,
在您的 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 高于我提到的值,这是这里的重点。希望这可以帮助。谢谢。
试试这个,它对我有用。
在您的 html 页面中添加以下代码。
$(document).ready(function(e) {
setInterval(function(){ $('a[title="GetOrgChart jquery plugin"]').hide(); }, 10);
});
打开文件 getorgchart.js
并找到 eval(eval("String.fromCharCode(blah3x...)"))
并删除或评论。
我使用以下方法暂时禁用 eval()
,GetOrgChart 使用它来保持徽标显示:
<script>__eval__ = eval; eval = function () { };</script>
<script src="getorgchart.js"></script>
<script>eval = __eval__;</script>
我正在尝试使用 getorgchart jquery 插件。我想删除显示在屏幕底部的 'GetOrgChart' 超链接。我已尝试将其从 getorgchart.js 文件中删除,但它仍然出现。它是主题的一部分吗?我怎样才能停止在我的网页上显示它???
请帮忙..
要删除 getorgchart 徽标,您需要购买许可证 http://www.getorgchart.com/Buy
试试这个,
在您的 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 高于我提到的值,这是这里的重点。希望这可以帮助。谢谢。
试试这个,它对我有用。
在您的 html 页面中添加以下代码。
$(document).ready(function(e) {
setInterval(function(){ $('a[title="GetOrgChart jquery plugin"]').hide(); }, 10);
});
打开文件 getorgchart.js
并找到 eval(eval("String.fromCharCode(blah3x...)"))
并删除或评论。
我使用以下方法暂时禁用 eval()
,GetOrgChart 使用它来保持徽标显示:
<script>__eval__ = eval; eval = function () { };</script>
<script src="getorgchart.js"></script>
<script>eval = __eval__;</script>