加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
common.js 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
gg365 提交于 2021-02-03 19:53 . Add files via upload
$(document).ready(function(){
//IE8 fix
if(document.all&&document.querySelector&&!document.addEventListener){
var style = $('<st'+'yle type="text/css">:before,:after{content:none !important}</style>').appendTo('head');
setTimeout(function(){
style.remove();
},0);
}
});
hljs.initHighlightingOnLoad();
marked.setOptions({
highlight:function(code){
return hljs.highlightAuto(code).value;
}
});
function mdr(tmpls){
$(tmpls).each(function(){
var tmpl = $(this);
var v = tmpl.val();
if(!v) v = tmpl.html();
var p = tmpl.parent();
p.addClass('markdown-body');
tmpl.after(marked(v));
p.find('a').each(function(){
var a = $(this);
if(!a.attr('target')){
var p = a.parent();
if(!p || !p.hasClass('codes')){
a.attr('target','_blank');
}
}
});
});
$('.codes a').on('click',function(){
var id = $(this).html();
$('.codes a').each(function(){
var o = $(this);
var oid = o.html();
if(oid===id){
$('#'+oid).show();
o.addClass('active');
}else{
$('#'+oid).hide();
o.removeClass('active');
}
});
});
}
function output(s){
$('#output').show();
$('<div>'+s+'</div>').appendTo('#output');
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化