plone_formtooltip.js
来自「Makefile编程及相关资料的介绍与入门。很适合初学者的学习与借鉴」· JavaScript 代码 · 共 22 行
JS
22 行
// Tooltip-like help pop-ups used in forms function formtooltip(el,flag){ elem = document.getElementById(el); if (flag) { elem.parentNode.parentNode.style.zIndex=1000; elem.parentNode.parentNode.style.borderRight='0px solid #000'; // ugly , yes .. but neccesary to avoid a small but very annoying bug in IE6 elem.style.visibility='visible'; } else { elem.parentNode.parentNode.style.zIndex=1; elem.parentNode.parentNode.style.border='none'; elem.style.visibility='hidden' }; }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?