我正考虑将Fiddler用于以下目的......
我想向潜在客户展示基于JavaScript的服务。为了向他们展示他们的网站在安装(包括)我的脚本时的样子,我想在我的电脑上设置Fiddler,以便在获取客户的网站时
<script type="text/JavaScript" src="myscript.js"></script>
行将包含在HTML <head>
部分中。
这可以通过Fiddler轻松完成吗?有人能指出我在哪里可以找到涵盖的文件,如果是的话?
谢谢!
---- ----更新
目前我已经使用BHO将我的脚本添加到页面中。我在onDocumentComplete上使用execScript()来运行一段简单的JavaScript,它将我需要的.js文件附加到页面上。但EricLaw的指针和抖动的答案似乎是一种更完整(和优雅)的方式来做我需要的方式。
如果有人有兴趣,我可以在这里上传BHO代码。 -Thanks!
答案 0 :(得分:28)
Open fiddler - &gt;菜单规则 - &gt;自定义规则(或按Ctrl + R)
CustomRule.js 文件打开。向下滚动,直到找到
行static function OnBeforeResponse(oSession: Session)
这是您的代码所在。在这里,您可以在浏览器看到之前更改服务器响应。
以下代码示例演示了如何包含一个自定义jQuery代码片段,该代码片段替换水平菜单中的Unanswered链接,其中的链接用作Unanswered jQuery Questions的快捷方式
我首先向您展示我想要包含的jQuery代码
<script type='text/javascript'>
$(function() {
var newLink = '<a href="/unanswered/tagged/jquery">Unanswered jQuery</a>';
$('div#hmenus div.nav:first ul li:last a').replaceWith(newLink);
});
</script>
现在是小提琴代码(基于 CustomRules.js 中的代码和来自FiddlerScript CookBook的代码示例)
//is it a html-response and is it from stackoverflow.com
if (oSession.oResponse.headers.ExistsAndContains("Content-Type", "html") &&
oSession.HostnameIs("stackoverflow.com")) {
// Remove any compression or chunking
oSession.utilDecodeResponse();
var oBody = System.Text.Encoding.UTF8.GetString(oSession.responseBodyBytes);
// Match the jQuery script tag
var oRegEx = /(<script[^>]*jquery.min.js"><\/script>)/gi;
// replace the script tag withitself (no change) + append custom script tag
oBody = oBody.replace(oRegEx, "$1<script type='text/javascript'>$(function() {$('div#hmenus div.nav:first ul li:last a').replaceWith('<a href=\"/unanswered/tagged/jquery\">Unanswered jQuery</a>');})</script>");
// Set the response body to the changed body string
oSession.utilSetResponseBody(oBody);
}
结果如下所示
Modified stackoverflow.com http://img269.imageshack.us/img269/570/clipboard01ym.jpg
我认为你现在应该能够自己解决一段符合你问题的代码。
实施例
// Match the head end
var oRegEx = /(<\/head>)/gi;
// replace with new script
oBody = oBody.replace(oRegEx, "<script type='text/javascript' src='http://url/myscript.js'></script>$1");
答案 1 :(得分:0)
如果你使用jQuery,你可以动态添加js。我可能认为你可以有一个方法,根据一些查询参数包含/排除你的脚本。这就是你用jQuery包含JS的方法
$.getScript('someScript.js',function(){
//Do something here after your script loads
});
答案 2 :(得分:0)
没试过,但GreaseMonkey for IE怎么样?