我是编程的小伙伴。 我网站的内置滑块Jquery正在干扰我外部添加的另一个滑块Jquery。它们分别很好地工作,但是当放在一起内置的fp滑块不起作用,而外部滑块保持良好的工作。经过一些搜索,我觉得可以通过编辑外部滑块的某些功能来修复它。
* 以下是我的外部插件中的功能 *
<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>
答案 0 :(得分:0)
没关系。我只是通过将'jQuery(document).ready(function(){'of external slider'中的函数替换为我的网站模板的'jQuery(document).ready(function(){'并引用它来修复错误。