0
在我的網頁home.html的回用從外部進入的網頁內嵌的網頁(framework7)
<li><a href="#testpage" class="item-link">
<div class="item-content">
<div class="item-inner">
<div class="item-title">Tespage</div>
</div>
</div></a>
</li>
,並在#testpage
<div data-page="testpage" class="page cached">
<div class="page-content">
<div class="content-block">
<p>Lorem ipsum dolor sit amet </p>
</div>
</div>
</div>
的inlinepage,我的問題是..我怎麼能去從EXTERNAL頁面返回到#testpage ..我已經使用url home.html#testpage從外部頁面回來了。但不起作用..
是,已經有pushState的我,app.js ..但仍然無法在這種情況下工作.. ,我家的html有3 TAB Bar(1view-2view-3view)..我需要從外部頁面回到2view .. – Edofx
男人,它取決於你的'pushStateSeparator',默認情況下它是'#!/',所以從你的外部頁面你必須回到'home.html#!/ testpage',但這不適用於選項卡去特定的選項卡,你必須建立自己的功能,我可以幫助你如果需要的話。 – tinyCoder
yep dude,即時通訊使用模板標籤:(..這裏是從F7 github模板選項卡:https://github.com/nolimits4web/Framework7/tree/master/examples/tab-bar .. 我需要從外部網頁回到#視圖2 – Edofx