我試圖創建一個頁面的網站,這將默認加載1.component.html。當用戶點擊下一個按鈕時,它會加載2.component.html。同樣,如果用戶當前位於2.component.html並單擊後退按鈕,則會加載1.component.html。路由不是必需的。如何顯示/隱藏子組件
回答
聽起來像任何標籤控制。
基本上你需要一個變量,而每次點擊改變它的狀態:
let status = 1;
function onclick1(){
this.status = 1;
}
function onclick2(){
this.status = 2;
}
<button (click)="onclick1()">page1</button>
<button (click)="onclick2()">page2</button>
<div *ngIf="status==1">page1</div>
<div *ngIf="status==2">page2</div>
我也想被保持在頁分離等1.component.html,....因爲我期待很多內容,所以它會提供更好的分離。 –
你可以把一個組件元素這些div內 – Avi
好答案,而不是* ngIf我們可以使用[隱藏] ... ALSE哪裏 –
當將重定向第一頁負載component.html
//javascript code
<script type = "text/javascript">
window.onload = function()
{
alert("ohk");
document.getElementById("fom_id").action = "1.component.html";}
</script>
'**************Below code to redirect on another page*******************
'**************Add this code on component.html file *******************
<script type="text/javascript">
//call this function on net button onclick event.
function validate()
{
alert("ohk");
var activeid = document.activeElement.id;
if (activeid == "next")
{
document.getElementById("form_id").action = 2.component.html document.getElementById("form_id").submit();
}
}
</script>
//Add this same code for 2.component.html
//redirect it to 1.component.html
年代角2參與? –
- 1. 隱藏顯示組件adf
- 2. 顯示/隱藏帖子ID
- 3. 隱藏/顯示子菜單
- 4. 顯示/隱藏子視圖
- 5. 顯示或隱藏子div
- 6. 如何顯示隱藏文件並用ls隱藏顯示的文件?
- 7. 如何刪除ActiveScaffold子組上的顯示/隱藏鏈接?
- 8. WPF顯示/隱藏一組控件
- 9. 帶背景的隱藏/顯示組件
- 10. JSF顯示/隱藏div組件
- 11. 如何顯示/隱藏div
- 12. 如何隱藏/顯示UIimageview?
- 13. 隱藏/顯示yaxis系列隱藏/顯示事件
- 14. 如何有條件地隱藏和顯示標籤 - 離子2?
- 15. 如何在angular2上點擊按鈕時顯示/隱藏組件?
- 16. 如何在oracle adf中隱藏/顯示UI組件
- 17. 如何在點擊React-redux時顯示/隱藏組件?
- 18. 如何使用JSF顯示/隱藏組件?
- 19. 顯示/隱藏元件
- 20. 在Angular2中,我需要顯示和隱藏父組件中的子組件
- 21. 當顯示另一個相同的組件時隱藏組件
- 22. 隱藏帖子從wordpress中顯示
- 23. 隱藏/顯示所有子Divs - JS
- 24. 在wordpress中顯示/隱藏子菜單
- 25. 顯示/隱藏wordpress子菜單
- 26. 的NSView顯示和隱藏子視圖
- 27. CSS/jquery顯示隱藏子菜單
- 28. 隱藏李的孩子,點擊顯示
- 29. 切換顯示/隱藏optgroup子女jquery
- 30. 隱藏/顯示子元素的onclick
我只是想確認一下,因爲你標記你的問題用'angularjs'和'angular2',你用什麼Angular版本來實現它? – Michael
http://stackoverflow.com/questions/35578083/what-is-the-equivalent-of-ngshow-and-nghide-in-angular2/35578093#35578093或更高級的方案http://stackoverflow.com/questions/36325212 /角-2-動態突片與 - 用戶點擊選擇組件/ 36325468#36325468 –