我是编程的菜鸟。 我网站的内置滑块 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>