曾经做内部前端统计工具做过如下判断。
当前版本5.0可通过以下方法。当然类似手段,自己多尝试吧! 或者去解他们的资源包看看
/**
   * try360SE
   */
  function try360SE(callback) {
    var ret = false,
        img = new Image();
    img.src = 'res://360se.exe/2/2025';
    img.onload = function() {
      ret = true;
    }
    setTimeout(function() {
      callback(ret);
      ret = undefined;
    }, 100);
  }