如何在jQuery中的页面加载上播放动画,以便它可以为index.php播放但不是other_page.php

时间:2015-07-16 11:10:48

标签: javascript php jquery animation pageload

我想在页面加载时播放动画,但仅限于我的index.php,而不是我网站的每个其他页面。

jQuery有这样的东西:

$('index.php').ready(function());

如果不能,我怎样才能达到预期效果?

2 个答案:

答案 0 :(得分:0)

只需使用以下任何jquery加载函数将jQuery代码放在index.php页面中。

$(window).load(function(){...});

$(document).ready(function(){...});

$('body').onload(function(){...});

这样你的动画将只在index.php页面上运行,而不是任何其他页面。

希望这能解决您的问题。

答案 1 :(得分:0)

您可以使用Javascript检查网址,然后触发您的功能播放

if(
window.location.href=="address to check"
)
 your_function();
{
/* some code to load */
}else{
document.write('<div>testing my super loaded div code sample</div>')
}
}