2017-02-04 29 views
-1

我正在處理包含登錄和註冊以及其他一些功能的單個頁面應用程序。我的頁面爲index.html,其中包括signin.htmlregister.html,並且在登錄時提交應該將用戶引導至welcome.html。 我瞭解如何使用ng-include將多個html頁面放入一個頁面,但是如何在這種情況下使用它?如何使用angular在單頁面應用程序中點擊按鈕來重定向到另一個HTML頁面?

嘗試include.html

<body ng-app="myApp"> 
    <div > 
    <div ng-include = "'tryinclude1.html'"></div> 
    </div> 

tryinclude1.html

<body> 
<label>you are in tryinclude1 press ok to go to another page</label> 
<button ng-include="'tryinclude1.html'">ok</button> 
</body> 

tryinclude2.html:

<body> 
<label>you are in tryinclude2 press ok to go to another page</label> 
<button ng-include="'tryinclude1.html'">ok</button> 
</body> 

謝謝你的幫助

+0

發表您已經嘗試過的內容。 –

+0

如果你使用的是ui路由器,那麼使用$ state.go('stateName'),如果你使用的是ng路由器,使用$ location.path('/ newValue') –

+0

我貼@Stark Buttowski – user6561572

回答

相關問題