获取鼠标位置
摘要:$('body').mousemove(function (e) { var xx = e.originalEvent.x || e.originalEvent.layerX || 0; var yy = e.originalEvent.y || e.originalEvent.layerY || 0; $("div.po...
阅读全文
posted @
2017-11-30 16:22
time_on
阅读(152)
推荐(0) 编辑
jquery封装插件
摘要:这两种方式等效: /**用法$("#bb").tooltip1();$("#bb").tooltip2();*/ (function ($) {$.fn.tooltip1 = function( options ) {var $this = $(this);var txt = $this.html(
阅读全文
posted @
2017-11-16 11:30
time_on
阅读(159)
推荐(0) 编辑