jquery在线网站URL网址Ping工具插件

所属分类: 网页特效-实用工具    2023-11-21 08:53:25

jquery在线网站URL网址Ping工具插件 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

jquery在线网站URL网址Ping工具插件(共3个文件)

    • ping.js
    • runping.js
    • index.html

使用方法

var Ping = function(opt) {
    this.opt = opt || {};
    this.favicon = this.opt.favicon || "/favicon.ico";
    this.timeout = this.opt.timeout || 0;
    this.logError = this.opt.logError || false;
};

Ping.prototype.ping = function(source, callback) {
    var self = this;
    self.wasSuccess = false;
    self.img = new Image();
    self.img.onload = onload;
    self.img.onerror = onerror;

    var timer;
    var start = new Date();

    function onload(e) {
        self.wasSuccess = true;
        pingCheck.call(self, e);
    }

    function onerror(e) {
        self.wasSuccess = false;
        pingCheck.call(self, e);
    }

    if (self.timeout) {
        timer = setTimeout(function() {
            pingCheck.call(self, undefined);
    }, self.timeout); }


    /**
     * Times ping and triggers callback.
     */
    function pingCheck() {
        if (timer) { clearTimeout(timer); }
        var pong = new Date() - start;

        if (typeof callback === "function") {
            // When operating in timeout mode, the timeout callback doesn't pass [event] as e.
            // Notice [this] instead of [self], since .call() was used with context
            if (!this.wasSuccess) {
                if (self.logError) { console.error("error loading resource"); }
                return callback("error", pong);
            }
            return callback(null, pong);
        }
    }

    self.img.src = source + self.favicon + "?" + (+new Date()); // Trigger image load with cache buster
};

if (typeof exports !== "undefined") {
    if (typeof module !== "undefined" && module.exports) {
        module.exports = Ping;
    }
} else {
    window.Ping = Ping;
}

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 实用工具

jquery文本框输入任意字符可自动捕获键盘事件

keymap.js是一个简单而强大的捕获键盘插件,用于捕获键盘事件,可以区分按键的按下或弹起等操作。
  实用工具
 6184  0

jquery在线自定义图片文字编辑工具

一款在线图文编辑工具插件,支持触摸触屏功能的图像编辑/绘制/注释工具,带拖拽随意控制大小等。
  实用工具
 3251  0

jquery按下键盘任意键自动显示unicode键值和按键名称

一款键盘按键检测器,检测JavaScript keydown事件,并在按下时显示键盘键的Unicode和名称。
  实用工具
 2308  0

jquery轻量级可拖动自定义标记的图片注释工具

DragDropAnnotate是一个轻量级的图片注释工具,可通过拖放拖拽向图片中添加自定义标记、注释和标注热点。
  实用工具
 1301  0

评论数(1) 回复有机会获得K币 用户协议

    great0
    2023-12-07 21:22:59
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论