我有一種技術,使用第三方軟件從PDF
創建交互Web APP
。使用javascript指定圖像的鏈接
有可能在PDF
中添加hotspots links
,其中翻譯爲Flash SWF desktop version app
?
還有一個移動版本,它會生成單獨的圖像並丟失任何鏈接。通過引用一些JavaScript,它會生成這個我不能直接更改的html。
我的gol吧,例如/files/mobile/2.jpg
和/files/mobile/8.jpg
鏈接到我選擇的一些地址。
由於我無法進入此HTML
,可能存在一種方法來添加javascript
以使某些圖像鏈接基於其名稱?
<div id="fbBookPages" class="fbBookPages">
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/1.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/2.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/3.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/4.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/5.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/6.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/7.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: none; height: 1121px; width: 1121px; margin-left: 364px; z-index: 1;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/8.jpg" style="width: 1121px; height: 1121px;"></div>
<div class="fbPage" style="display: block; height: 1121px; width: 1121px; margin-left: 364px; z-index: 999;"><div class="fbPageLoading" style="display: none;"></div><img src="../files/mobile/9.jpg" style="width: 1121px; height: 1121px;"></div></div>
</div>
這當然是可能的,是的;但是你事先知道哪個''應該鏈接到哪個地址? 「../ files/mobile/1.jpg」應該總是鏈接到「http:// google.com」(例如),還是根據其他上下文進行更改?沒有進一步的信息,很難爲這個問題提供精確相關的答案。 –
嗨大衛,謝謝,是的,我應該澄清.. ../files/mobile/1.jpg總是會鏈接到http://google.com(或其他) 但我想../files/移動/ 8.jpg例如鏈接到一個不同的地址可以說http://www.thedesignbank.co.uk 從mdziekon答案完美的作品與一個鏈接,但我會希望有多個不同的鏈接目的地,是能夠設置這些。 –