jQuery 在 codeigniter 中查找 URI
我有一个在我的 codeigniter 站点的每个页面上运行的脚本。
jQuery(document).ready(function($) {
Cufon.replace('h1');
$('#term').hint();
setTimeout('changeImage()',9000);
});
我只想要最后一行 setTimeout('changeImage()',9000);
如果我位于基本 url 并且 URI 中没有段(只希望它在我的主页上运行) 。
是否可以使用 jQuery 执行某种类型的 if
语句并找出 URI 中是否没有段?
谢谢
I have a script that runs on every page of my codeigniter site.
jQuery(document).ready(function($) {
Cufon.replace('h1');
$('#term').hint();
setTimeout('changeImage()',9000);
});
I only want that last line setTimeout('changeImage()',9000);
if I'm on the base url and there are no segments in the URI (only want this to run on my homepage).
Is this possible to do some type of if
statement with jQuery and find out if there are no segments in the URI?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,你可以使用 window.location 通过简单的 javascript 来完成此操作,你需要担心三件事:路径名、搜索和哈希,代码将类似于:
Well you can do this with simple javascript using window.location, you have three things to worry about: pathname, search and hash, the code will be something like:
使用 window.location
use window.location