每次刷新都会使用JQuery更改横幅

每次刷新都会使用JQuery更改横幅

本文介绍了每次刷新都会使用JQuery更改横幅的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



我是Jquery的初学者,我需要创建一个横幅,需要在每次刷新时更改。就像我将在应用程序文件夹中有一组图像,我必须一次在主页上显示它们,如果我刷新页面然后应显示下一个图像。



使用JQuery ...

如果javascript也没问题...

Hi everyone,

I'm beginer to Jquery, i have a requirement of creating a banner, that needs to be changed on every refresh. like i will have a collection of images in a application folder , i have to display them on home page on at a time, if i refresh the page then next image should display.

Using JQuery...
If javascript also no problem...

推荐答案

var imageNo = Math.floor((Math.random()*5)+1); /* Change the 5 to the amount of images you have */






然后只需将banner-img类添加到你的img元素所在的横幅将出现。





Then just add the class of "banner-img" to your img element where the banner will appear.

<img class="banner-img" />


;

}



使用以下JQuery






";
}

use this following JQuery




这篇关于每次刷新都会使用JQuery更改横幅的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 07:10