2015-07-13 80 views
0

我要開prettyPhoto一個iframe,希望優化URL如何從prettyPhoto URL

<a href="iframe.html?iframe=true&width=100&height=100"> 

我試圖通過jQuery但一類添加到鏈接,並傳遞參數刪除GET參數不工作。

$("a.iframe']").prettyPhoto({ 
     iframe: true, 
     width: '100%', 
     height: '100%' 
    }); 

那麼有沒有辦法擺脫url中的這些參數?

回答

0

prettyPhoto允許您設置默認的寬度/高度是這樣的:

$("a.iframe']").prettyPhoto({ 
    default_width: 100, 
    default_height: 100 
}); 

該文檔不容許任何其他選項來設置這些dimentions。 你可以閱讀docs and see the full list of options here

0

我對這個漂亮的照片js沒有太多的想法。但是我認爲你沒有把類名稱給錨鏈接,所以jQuery函數在你的代碼中沒有被調用。請用下面的錨鏈接替換錨鏈接。

<a href="iframe.html?iframe=true&width=100&height=100" class="iframe"> 

感謝, 阿米特生主