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 + -
显示快捷键?