我正在使用jQuery滑块。我在客户端有效地使用了它,但在服务器端运行时有问题。
我在客户端运行的代码是:
var a = jQuery.noConflict();
j(document).ready(function () {
a('#sliderFrame').nivoSlider();
});
昨天还很好,但是今天坏了。
jQuery(document).ready(function($) {
// Stuff to do as soon as the DOM is ready.
//Use $() w/o colliding with other libs;
$('#sliderFrame').nivoSlider();
});
您不需要创建另一个对象a
或j
使用jquery。上面提到的方法是安全的,即使你有多个javascript库。
注意:在使用nivoSlider()
方法之前,请确保您已经包含了必要的nivoSlider plugin js文件,就像这样…
<script src="path/to/jquery.nivo.slider.pack.js" type="text/javascript"></script>
请尝试下面的代码
var a = jQuery.noConflict();
a(document).ready(function () {
a('#sliderFrame').nivoSlider();
});