📄 form-field-tooltip.js
字号:
DHTMLgoodies_globalTooltipObj.__positionTooltip(this);
DHTMLgoodies_globalTooltipObj.tooltipContentDiv.innerHTML = tooltipText;
DHTMLgoodies_globalTooltipObj.tooltipDiv.style.display='block';
if(DHTMLgoodies_globalTooltipObj.isMSIE){
if(DHTMLgoodies_globalTooltipObj.tooltipPosition == 'below'){
DHTMLgoodies_globalTooltipObj.tooltipIframeObj.style.height = (DHTMLgoodies_globalTooltipObj.tooltipDiv.clientHeight - DHTMLgoodies_globalTooltipObj.arrowTopHeight);
}else{
DHTMLgoodies_globalTooltipObj.tooltipIframeObj.style.height = (DHTMLgoodies_globalTooltipObj.tooltipDiv.clientHeight);
}
}
}
// }}}
,
// {{{ __hideTooltip()
/**
*
*
* This function hides the tooltip
*
*
* @private
*/
__hideTooltip : function()
{
try{
DHTMLgoodies_globalTooltipObj.tooltipDiv.style.display='none';
}catch(e){
}
}
// }}}
,
// {{{ getSrcElement()
/**
*
*
* Return the source of an event.
*
*
* @private
*/
getSrcElement : function(e)
{
var el;
if (e.target) el = e.target;
else if (e.srcElement) el = e.srcElement;
if (el.nodeType == 3) // defeat Safari bug
el = el.parentNode;
return el;
}
// }}}
,
__autoHideTooltip : function(e)
{
if(document.all)e = event;
var src = this.getSrcElement(e);
if(src.tagName.toLowerCase()!='input' && src.tagName.toLowerCase().toLowerCase()!='textarea' && src.tagName.toLowerCase().toLowerCase()!='select')this.__hideTooltip();
var attr = src.getAttribute('tooltipText');
if(!attr)attr = src.tooltipText;
if(!attr){
this.__hideTooltip();
}
}
// }}}
,
// {{{ __hideTooltipFromLink()
/**
*
*
* This function hides the tooltip
*
*
* @private
*/
__hideTooltipFromLink : function()
{
this.activeInput.focus();
window.refToThis = this;
setTimeout('window.refToThis.__hideTooltip()',10);
}
// }}}
,
// {{{ disableTooltip()
/**
*
*
* Hide tooltip and disable it
*
*
* @public
*/
disableTooltip : function()
{
this.__hideTooltipFromLink();
if(this.disableTooltipByCookie)this.setCookie(this.cookieName,'1',500);
this.tooltipDisabled = true;
}
// }}}
,
// {{{ __positionTooltip()
/**
*
*
* This function creates the tooltip elements
*
*
* @private
*/
__createTooltip : function()
{
this.tooltipDiv = document.createElement('DIV');
this.tooltipDiv.style.position = 'absolute';
if(this.displayArrow){
var topDiv = document.createElement('DIV');
if(this.tooltipPosition=='below'){
topDiv.style.marginLeft = '20px';
var arrowDiv = document.createElement('IMG');
arrowDiv.src = this.imagePath + this.arrowImageFile + '?rand='+ Math.random();
arrowDiv.style.display='block';
topDiv.appendChild(arrowDiv);
}else{
topDiv.style.marginTop = '5px';
var arrowDiv = document.createElement('IMG');
arrowDiv.src = this.imagePath + this.arrowImageFileRight + '?rand='+ Math.random();
arrowDiv.style.display='block';
topDiv.appendChild(arrowDiv);
topDiv.style.position = 'absolute';
}
this.tooltipDiv.appendChild(topDiv);
}
var outerDiv = document.createElement('DIV');
outerDiv.style.position = 'relative';
outerDiv.style.zIndex = 1000;
if(this.tooltipPosition!='below' && this.displayArrow){
outerDiv.style.left = this.arrowRightWidth + 'px';
}
outerDiv.id = 'DHTMLgoodies_formTooltipDiv';
outerDiv.className = 'DHTMLgoodies_formTooltipDiv';
outerDiv.style.backgroundColor = this.tooltipBgColor;
this.tooltipDiv.appendChild(outerDiv);
if(this.isMSIE){
this.tooltipIframeObj = document.createElement('<IFRAME name="tooltipIframeObj" width="' + this.tooltipWidth + '" frameborder="no" src="about:blank"></IFRAME>');
this.tooltipIframeObj.style.position = 'absolute';
this.tooltipIframeObj.style.top = '0px';
this.tooltipIframeObj.style.left = '0px';
this.tooltipIframeObj.style.width = (this.tooltipWidth) + 'px';
this.tooltipIframeObj.style.zIndex = 100;
this.tooltipIframeObj.background = this.pageBgColor;
this.tooltipIframeObj.style.backgroundColor= this.pageBgColor;
this.tooltipDiv.appendChild(this.tooltipIframeObj);
if(this.tooltipPosition!='below' && this.displayArrow){
this.tooltipIframeObj.style.left = (this.arrowRightWidth) + 'px';
}else{
this.tooltipIframeObj.style.top = this.arrowTopHeight + 'px';
}
setTimeout("self.frames['tooltipIframeObj'].document.documentElement.style.backgroundColor='" + this.pageBgColor + "'",500);
}
this.tooltipContentDiv = document.createElement('DIV');
this.tooltipContentDiv.style.position = 'relative';
this.tooltipContentDiv.id = 'DHTMLgoodies_formTooltipContent';
outerDiv.appendChild(this.tooltipContentDiv);
var closeDiv = document.createElement('DIV');
closeDiv.style.textAlign = 'center';
closeDiv.innerHTML = '<A class="DHTMLgoodies_formTooltip_closeMessage" href="#" onclick="DHTMLgoodies_globalTooltipObj.__hideTooltipFromLink();return false">' + this.closeMessage + '</A>';
if(this.disableTooltipPossibility){
var tmpHTML = closeDiv.innerHTML;
tmpHTML = tmpHTML + ' | <A class="DHTMLgoodies_formTooltip_closeMessage" href="#" onclick="DHTMLgoodies_globalTooltipObj.disableTooltip();return false">' + this.disableTooltipMessage + '</A>';
closeDiv.innerHTML = tmpHTML;
}
outerDiv.appendChild(closeDiv);
document.body.appendChild(this.tooltipDiv);
if(this.tooltipCornerSize>0){
this.roundedCornerObj = new DHTMLgoodies_roundedCorners();
// (divId,xRadius,yRadius,color,backgroundColor,padding,heightOfContent,whichCorners)
this.roundedCornerObj.addTarget('DHTMLgoodies_formTooltipDiv',this.tooltipCornerSize,this.tooltipCornerSize,this.tooltipBgColor,this.pageBgColor,5);
this.roundedCornerObj.init();
}
this.tooltipContentDiv = document.getElementById('DHTMLgoodies_formTooltipContent');
}
// }}}
,
addEvent : function(whichObject,eventType,functionName)
{
if(whichObject.attachEvent){
whichObject['e'+eventType+functionName] = functionName;
whichObject[eventType+functionName] = function(){whichObject['e'+eventType+functionName]( window.event );}
whichObject.attachEvent( 'on'+eventType, whichObject[eventType+functionName] );
} else
whichObject.addEventListener(eventType,functionName,false);
}
// }}}
,
__positionCurrentToolTipObj : function()
{
if(DHTMLgoodies_globalTooltipObj.activeInput)this.__positionTooltip(DHTMLgoodies_globalTooltipObj.activeInput);
}
// }}}
,
// {{{ __positionTooltip()
/**
*
*
* This function positions the tooltip
*
* @param Obj inputObj = Reference to text input
*
* @private
*/
__positionTooltip : function(inputObj)
{
var offset = 0;
if(!this.displayArrow)offset = 3;
if(this.tooltipPosition=='below'){
this.tooltipDiv.style.left = this.getLeftPos(inputObj)+ 'px';
this.tooltipDiv.style.top = (this.getTopPos(inputObj) + inputObj.offsetHeight + offset) + 'px';
}else{
this.tooltipDiv.style.left = (this.getLeftPos(inputObj) + inputObj.offsetWidth + offset)+ 'px';
this.tooltipDiv.style.top = this.getTopPos(inputObj) + 'px';
}
this.tooltipDiv.style.width=this.tooltipWidth + 'px';
}
,
// {{{ getTopPos()
/**
* This method will return the top coordinate(pixel) of an object
*
* @param Object inputObj = Reference to HTML element
* @public
*/
getTopPos : function(inputObj)
{
var returnValue = inputObj.offsetTop;
while((inputObj = inputObj.offsetParent) != null){
if(inputObj.tagName!='HTML'){
returnValue += inputObj.offsetTop;
if(document.all)returnValue+=inputObj.clientTop;
}
}
return returnValue;
}
// }}}
,
// {{{ getLeftPos()
/**
* This method will return the left coordinate(pixel) of an object
*
* @param Object inputObj = Reference to HTML element
* @public
*/
getLeftPos : function(inputObj)
{
var returnValue = inputObj.offsetLeft;
while((inputObj = inputObj.offsetParent) != null){
if(inputObj.tagName!='HTML'){
returnValue += inputObj.offsetLeft;
if(document.all)returnValue+=inputObj.clientLeft;
}
}
return returnValue;
}
,
// {{{ getCookie()
/**
*
* These cookie functions are downloaded from
* http://www.mach5.com/support/analyzer/manual/html/General/CookiesJavaScript.htm
*
* This function returns the value of a cookie
*
* @param String name = Name of cookie
* @param Object inputObj = Reference to HTML element
* @public
*/
getCookie : function(name) {
var start = document.cookie.indexOf(name+"=");
var len = start+name.length+1;
if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
if (start == -1) return null;
var end = document.cookie.indexOf(";",len);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(len,end));
}
// }}}
,
// {{{ setCookie()
/**
*
* These cookie functions are downloaded from
* http://www.mach5.com/support/analyzer/manual/html/General/CookiesJavaScript.htm
*
* This function creates a cookie. (This method has been slighhtly modified)
*
* @param String name = Name of cookie
* @param String value = Value of cookie
* @param Int expires = Timestamp - days
* @param String path = Path for cookie (Usually left empty)
* @param String domain = Cookie domain
* @param Boolean secure = Secure cookie(SSL)
*
* @public
*/
setCookie : function(name,value,expires,path,domain,secure) {
expires = expires * 60*60*24*1000;
var today = new Date();
var expires_date = new Date( today.getTime() + (expires) );
var cookieString = name + "=" +escape(value) +
( (expires) ? ";expires=" + expires_date.toGMTString() : "") +
( (path) ? ";path=" + path : "") +
( (domain) ? ";domain=" + domain : "") +
( (secure) ? ";secure" : "");
document.cookie = cookieString;
}
// }}}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -