我在 prettyPhoto 文档中实现了一个链接,但它不起作用
JavaScript 已处理(弹出警报),但取决于警报在其工作与否的函数中的位置。
如果警报在开头,prettyPhoto 工作正常并生成 URL 如果警报丢失或最后 URL 指向图像并全屏打开图像。
任何想法让它在没有警报的情况下工作?!
这是代码:
function prettyPhoto() {
//alert("Test"); //beginning pretty photo is working URL appended #prettyPhoto/0/
$("a[rel^='prettyPhoto']").prettyPhoto({
show_title: true,
theme: 'pp_default',
social_tools: false
});
alert("Test Ende"); //at the end prettyPhoto is NOT working URL is changing to the location of the image
}