打开提琴手 -> 菜单规则 -> 自定义规则(或点击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);
}
我认为您现在应该能够自己编写一段适合您问题的代码。
例子
// 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");