代码编程
-
公共js库访问缓慢国内的一些替代方案
目前国内有很多 NPM 和 CDNJS 的 CDN,可以支持相关包文件的高速引用,如: BootCDN: www.bootcdn.cn七牛云: www.staticfile.org360: cdn.baomitu.com字节跳动…… -
pboootcms调用自定义标签并做数据处理
调用单行文本标签 <?php use app\home\model\ParserModel; $this->modell = new ParserModel(); $labarr=$this->modell->getLabel(); echo $l…… -
一个jquery+marquee插件实现的连续滚动代码
代码如下 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=…… -
jquery移除文章内容style属性
$(document).ready(function() { // 选择目标div,移除其中所有子元素的style属性 $('.con-post').find('*').not('h3').removeAttr('style'); ……