解决phpcms更换javascript的幻灯片代码调用图片问题_PHP

WBOY
Release: 2016-06-01 11:06:31
Original
1066 people have browsed it

今天找到了一个js要放在phpcms上边!但是他的代码是这样的

代码如下:


var titles = '创顶1|创顶2|创顶3|创顶4';
var imgs='{APP_PATH}cdstyle/images/image1.jpg|{APP_PATH}cdstyle/images/image2.jpg|{APP_PATH}cdstyle/images/image3.jpg|{APP_PATH}cdstyle/images/image4.jpg';
var urls='http://baby220818.gotoip2.com/|http://baby220818.gotoip2.com/|http://baby220818.gotoip2.com/|http://baby220818.gotoip2.com/';

只能识别这种,今天我们就解决这样的问题,下边就是我的思想和代码

代码如下:


var title = new Array(); //先申明数组 全部加载到数组中
var img   =  new Array();
var url   = new Array();
 {pc:content  action="position" posid="1"  order="listorder DESC" thumb="1" num="5"}
 {php $a=1;}
  {loop $data $r}
 title[{$a}] = "{$r['title']}";  //title[1]='heloo'
 img[{$a}]   ="{thumb($r['thumb'],295,225)}";
 url[{$a}]   ="{$r['url']}";
 {php $a++;}
  {/loop}
  {/pc}
var files = "";
var links = "";
var texts = "";
for(i=1;i解决phpcms更换javascript的幻灯片代码调用图片问题_PHP if(files=="") files = img[i];  //如果files=空 就赋值files == img[1] 然后+| +img[2] 最后就会输出上边的格式
else files += "|"+img[i];
}
for(i=1;i if(links=="") links = url[i];
else links += "|"+url[i];
}
for(i=1;i

if(texts=="") texts = title[i];
else texts += "|"+title[i];
}
var titles = texts;  //赋值
var imgs= files;
var urls=links;

这个其实很简单,主要就是思维上边的问题。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!