摘要: 1 2 3 4 5 v-model 6 7 20 21 22 23 24 25 简单的问卷表格 26 27 28 29 是否想要学习该门课程:{{checked}} 30 31 32 请选择你需要的老师: 33 34 35 lucy 36... 阅读全文
posted @ 2019-02-23 11:38 perfect* 阅读(331) 评论(0) 推荐(0)
$(function() { $('#cnblogs_post_body img').each(function() { let imgSrc = $(this).attr('src'); let year = parseInt(imgSrc.substr(imgSrc.indexOf('g')+1,4)); if(year >= 2022){ imgSrc += `?watermark/2/text/amlndWl5YW4=/font/5a6L5L2T/fontsize/15/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast`; $(this).attr('src', imgSrc) } }) })