根據我的要求,我在IFRAME
中放置了一個錨標籤。當我點擊錨鏈接時,頁面會重定向IFRAME
中的頁面。在這裏,我的要求是當用戶點擊錨標籤時(在IFRAME
中)頁面重定向到主url(不在IFRAME
中)。我怎樣才能在PHP或JavaScript中做到這一點。你能說點什麼嗎?Iframe to Main URL
0
A
回答
0
嘗試<iframe> <a href="#" onclick='window.location.href="homepage.php"' >click here </a> </iframe>
?? ..這那些javasript ..
0
您正在尋找的<a target=
屬性。將其設置爲_top
將更改最外層框架的網址,並將其設置爲_parent
將更改父框架的網址。
相關問題
- 1. Iframe to other web side
- 2. JavaScript iFrame to Parent postMessage問題
- 3. .php url to .html url
- 4. javascript to post to url and
- 5. Retrofit/Sphere Engine API錯誤:undefined reference to`main'
- 6. how to send post to remote url and redirect to the url in php
- 7. HOW-TO:「?」的URL
- 8. GWT Async to URL
- 9. mod_rewite to mask url
- 10. TNS:Listener to JDBC Url
- 11. form not not to iframe back
- 12. iframe來自URL
- 13. URL中的iframe
- 14. URL以下iFrame
- 15. Iframe parent url
- 16. cross site iframe postMessage from child to parent
- 17. JavaScript to add source URL
- 18. 圖片Url to base64encode?
- 19. .svg url to UIImage iOS
- 20. Rest to the Object-URL
- 21. Progammatically Create Button to URL
- 22. SSRS 2008 go to url getting set to target = _top
- 23. 設置基於動態URL的iframe url
- 24. 處理url槽iframe
- 25. 從IFrame獲取URL?
- 26. iframe GET url變量
- 27. SagePay IFrame在IFrame中加載響應URL
- 28. Fancybox iframe,顯示iframe,然後去url?
- 29. Autohotkey Add Javascript Hash To Local URL
- 30. AngularJS post form to external URL
你想單擊'iframe'上的鏈接,它應該改變整個頁面或什麼? –