how2j网站的代码框太小,增加一个适应按钮
当前为
// ==UserScript== // @name how2j代码框适应大小 // @namespace [url=mailto:[email protected]][email protected][/url] // @author wyx // @description how2j网站的代码框太小,增加一个适应按钮 // @match *://how2j.cn/k/* // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js // @version 0.0.3 // @grant GM_addStyle // ==/UserScript== (function () { 'use strict'; var btn_html = '<button class="extend_btn" style="margin-top:0px;margin-left:50px;padding:5px;" class="pull-right copyButton btn btn-info btn-xs" codeindex="code1797_0" type="button">\n' + ' 代码框自适应\n' + '</button>'; var tag = $("div.stepCode"); tag.prepend(btn_html); $(".syntaxhighlighter").css("overflow", ""); $(function () { $(".extend_btn").click(function () { if($(".syntaxhighlighter").css("overflow").length==0){ $(".syntaxhighlighter").css("overflow", "auto"); }else{ $(".syntaxhighlighter").css("overflow", ""); } }); }); })();