代码编程
-
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'); ……