jquery插件jtip的适用修改

jquery插件jtip的实用 修改
jtip插件可以方便作出超酷的提示效果,但功能过于简单,我对其进行了扩展改进:

1.将ajax文件加载方式由href改为rel

2.增加了 鼠标可以移动到弹出层,当鼠标离开时弹出层消失

3.增加了 可以将本页面内某ID的层内容 显示为提示层。比如:<a rel="$testdiv">显示testdiv</a>

<div id="testdiv">这里是testdiv的内容</div> 当鼠标移动到上边链接时,将显示testdiv层内的内容

以下为jtip代码

//on page load (as soon as its ready) call JT_init
$(document).ready(JT_init);
var JT_delay = 0;
function JT_init(){
        $("a.jTip")
     .hover(function(){JT_show(this.rel,this.id,this.name)},function(){JT_close()})
           .click(function(){return false});   
}

function JT_show(url,linkId,title){
clearTimeout(JT_delay);
$('#JT').remove();
if(title == false)title="&nbsp;";
var de = document.documentElement;
var w = self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
var hasArea = w - getAbsoluteLeft(linkId);
var clickElementy = getAbsoluteTop(linkId) - 3; //set y position

var queryString = url.replace(/^[^\?]+\??/,'');
var params = parseQuery( queryString );
if(params['width'] === undefined){params['width'] = 250};
if(params['link'] !== undefined){
$('#' + linkId).bind('click',function(){window.location = params['link']});
$('#' + linkId).css('cursor','pointer');
}

if(hasArea>((params['width']*1)+75)){
   $("body").append("<div id='JT' >   var arrowOffset = getElementWidth(linkId) + 11;
   var clickElementx = getAbsoluteLeft(linkId) + arrowOffset; //set x position
}else{
   $("body").append("<div id='JT' >   var clickElementx = getAbsoluteLeft(linkId) - ((params['width']*1) + 15); //set x position
}

$('#JT').css({left: clickElementx+"px", top: clickElementy+"px"});
$('#JT').mouseover(function(){clearTimeout(JT_delay);})
$('#JT').mouseout(function() {JT_close();});

var urlParts = url.split("\?", 2);
urlParts[0] = urlParts[0].substr(urlParts[0].lastIndexOf('/')+1);

if(urlParts[0].charAt(0) == '$')
{
   $('#JT').html($("#"+urlParts[0].substr(1)).html());
   $('#JT').show();
}
else{
   $('#JT').show();
   $('#JT_copy').load(url);
}

}
function JT_close(){
JT_delay = setTimeout(function(){$('#JT').remove();},200);
}
function getElementWidth(objectId) {
x = document.getElementById(objectId);
return x.offsetWidth;
}

function getAbsoluteLeft(objectId) {
// Get an object left position from the upper left viewport corner
o = document.getElementById(objectId)
oLeft = o.offsetLeft            // Get left position from the parent object
while(o.offsetParent!=null) {   // Parse the parent hierarchy up to the document element
   oParent = o.offsetParent    // Get parent object reference
   oLeft += oParent.offsetLeft // Add parent left position
   o = oParent
}
return oLeft
}

function getAbsoluteTop(objectId) {
// Get an object top position from the upper left viewport corner
o = document.getElementById(objectId)
oTop = o.offsetTop            // Get top position from the parent object
while(o.offsetParent!=null) { // Parse the parent hierarchy up to the document element
   oParent = o.offsetParent // Get parent object reference
   oTop += oParent.offsetTop // Add parent top position
   o = oParent
}
return oTop
}

function parseQuery ( query ) {
   var Params = new Object ();
   if ( ! query ) return Params; // return empty object
   var Pairs = query.split(/[;&]/);
   for ( var i = 0; i < Pairs.length; i++ ) {
      var KeyVal = Pairs[i].split('=');
      if ( ! KeyVal || KeyVal.length != 2 ) continue;
      var key = unescape( KeyVal[0] );
      var val = unescape( KeyVal[1] );
      val = val.replace(/\+/g, ' ');
      Params[key] = val;
   }
   return Params;
}

function blockEvents(evt) {
              if(evt.target){
              evt.preventDefault();
              }else{
              evt.returnValue = false;
              }
}

原作者:http://www.verydemo.com/demo_c110_i10437.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值