jQuery 历史记录插件错误:$.history 未定义
我不完全是一个新手,但我一生都无法弄清楚为什么如此简单的东西不起作用。
尝试运行此 jQuery 插件时,我收到错误 $.history is undefined
...
http://www.mikage.to/jquery/jquery_history.html
这是我的页面...
http://hupcapstudios.com/includeTest/getit.php
谁能告诉我我错过了什么?
编辑: (顺便说一句。在 Mac 上使用 FF 3.5 并在错误控制台中读取错误)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题似乎在于滥用历史记录插件。如果您阅读了页面中包含的文件的源代码,将会看到它根本没有定义
history
成员。我认为您正在寻找
$.historyInit
而不是$.history.init
Your problem seems to be in the misuse of the history plugin. If you read the source of the file you've included in your page you'll see it simply doesn't define a
history
member.I think you're looking for
$.historyInit
instead of$.history.init
$.history.init()
格式来自较新版本的插件,可在此处找到:http://github.com/tkyk/jquery-history-plugin你只需要更新你的
jquery.history.js
:)The
$.history.init()
format is from the newer version of the plugin, found here: http://github.com/tkyk/jquery-history-pluginYou just need to update your
jquery.history.js
:)