QModem/luci-app-modem/luasrc/view/modem/hide_manual_config_modem.htm

19 lines
433 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script type="text/javascript">//<![CDATA[
window.onload=function()
{
// 获取高级设置标签元素
var str="manual"
var manual_element = document.querySelector('div[data-tab="'+str+'"]');
// 适配老版lucilede
if (manual_element==null) {
manual_element = document.querySelectorAll('div[id*="'+str+'"]')[0];
}
//隐藏拨号配置ID元素
manual_element.style.display="none";
}
//]]>
</script>