jQuery:PrettyPhoto API 不起作用
我正在尝试使用 PrettyPhoto API,但 firebug 说 $.prettyPhoto.open() 不是一个函数并且不起作用...
代码: http://jsbin.com/ihuje3/3/edit
$(document).ready(function(){
$.prettyPhoto.open('http://www.microdual.com/assets/images/newsletters/doublehosting.jpg','Test','Test desc');
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须首先设置 PrettyPhoto(不幸的是,由于插件的编写方式),如下所示:
您可以在源代码中看到,像
$.prettyPhoto.open()
这样的函数是通过运行 `$ 来定义的。另一个问题是该插件似乎对 jQuery 1.4.4 中引入的调用者上下文存在问题,它在 1.4.3 中工作正常(此问题已报告在论坛上,希望作者能尽快解决这个问题。
You have to setup prettyPhoto first (because of how the plugin is written, unfortunately), like this:
You can see in the source that functions like
$.prettyPhoto.open()
are defined by running `$.The other issue is the plugin seems to have an issue with caller context introduced in jQuery 1.4.4, it works fine with 1.4.3 (you can test it here). This has been reported on the forums, hopefully the author will address it soon.