HTML Ventriloquist Bookmarklet

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML Ventriloquist Bookmarklet相关的知识,希望对你有一定的参考价值。

javascript:function htmlreplace(a,b,element){if(!element)element=document.body;var nodes=element.childNodes;for(var n=0;n<nodes.length;n++){if(nodes[n].nodeType==Node.TEXT_NODE){nodes[n].textContent=nodes[n].textContent.replace(new RegExp(a,'gi'),b);}else{htmlreplace(a,b,nodes[n]);}}}htmlreplace(prompt("What do you want to replace?"),prompt("What do you want to replace it with?"))

javascript 要在console.log()中执行的JS脚本,以便查找网站的Google Analytics UA代码。在bookma中使用相同的代码

/*
 * The following script requires jQuery to exist in the website.
 */
(function($) {
  if (typeof(ga) == "undefined") {
    console.log('No Google Analytics script found');
  }
  else {
    var UAs = ga.getAll();
    $.each(UAs, function(key, value) {
      console.log(value.b.data.values[':trackingId']);
    });
  }
})(jQuery);
/*
 * The following script requires browser to support the forEach() callback.
 */
(function() {
  if (typeof(ga) == "undefined") {
    console.log('No Google Analytics script found');
  }
  else {
    var UAs = ga.getAll();
    UAs.foReach(function(key, value) {
      console.log(value.b.data.values[':trackingId']);
    });
  }
})();

以上是关于HTML Ventriloquist Bookmarklet的主要内容,如果未能解决你的问题,请参考以下文章

[ArcGIS API for JavaScript 4.8] Sample Code-Get Started-widgets简介

如何在 eloquent ORM 中执行此搜索查询

从特定post_type中排除帖子

NotNull 条件不适用于 spark 数据框 scala 中的 withColumn 条件

让iOS的Safari书签能够显示真正的网站图标

一天学会HTML 基础