0

我是编程的菜鸟。 我网站的内置滑块 Jquery 干扰了我在外部添加的另一个滑块 Jquery。它们单独工作得很好,但是当放在一起时,内置的 fp-slider 不起作用,而外部滑块则保持正常工作。经过一番搜索,我觉得可以通过编辑外部滑块的一些功能来修复它。

*这是我的外部插件中的功能*

<script src="http://,,,/jquery-latest.js"></script>  
<script src="http://,,,,/js/plusone.js"  type="text/javascript"></script>  
<script type="text/javascript">  

jQuery(document).ready(function ()  {
jQuery("#facebook_right").hover(function ()
{jQuery(this).stop(true,false).animate({right: 0}, 500); }, 
function (){
jQuery("#facebook_right").stop(true,false).animate({right: -239},500);});    


jQuery("#twitter_right").hover(function (){
jQuery(this).stop(true,false).animate({right: 0},500);},function (){
jQuery("#twitter_right").stop(true,false).animate({right: -254},500);});

jQuery("#google_plus_right").hover(function(){
jQuery(this).stop(true,false).animate({right: 0},500);},function()
{jQuery("#google_plus_right").stop(true,false).animate({right: -294},500);});   


jQuery("#feedburner_right").hover(function(){
jQuery(this).stop(true,false).animate({right: 0}, 500);},function() 
{jQuery("#feedburner_right").stop(true,false).animate({right: -304 }, 500);});    



jQuery("#youtube_right").hover(function(){
jQuery(this).stop(true,false).animate({right: 0},500);},function(){
jQuery("#youtube_right").stop(true,false).animate({right:-304},500);});});  
</script>
4

1 回答 1

0

没关系。我只是通过将外部滑块的 'jQuery(document).ready(function () {' 中的函数替换为我的站点模板的 'jQuery(document).ready(function () {' 并引用 . js src 文件也通过模板。所以只为小部件留下了 div。它有效。

于 2013-11-13T07:03:07.610 回答