从按钮标签导航到html

时间:2016-08-31 13:46:34

标签: html css angularjs

this is how it looks with working A tag and button tag我有一些表格的重复。每个表单都有一个按钮 - 编辑配置文件,需要使用$ stateParam(userId)将用户重定向到/ userProfile。

这是我的代码:

    <button type="button"  class="btn btn-grey btn-ripple">Edit profile</button>

我尝试了以下没有成功:

 <a href="/userProfile?userId={{staff.UserId}}"  class="btn btn-grey btn-ripple">Edit profile</a>                 

- 工作正常但css在<a>代码

上无法正常工作

我尝试将<button>标记添加到<a>标记中,但无效。

我想用HTML编写,没有javascript。我尝试使用form代码和action=url,但没有工作,他试图访问"http:\\"网址。

有什么建议吗?

由于

2 个答案:

答案 0 :(得分:0)

假设您正在使用AngularJS,您可以这样做:

<button type="button" ng-click="location.assign('/userProfile?userId=' + staff.UserId)" class="btn btn-grey btn-ripple">Edit profile</button>

答案 1 :(得分:-1)

所以我试过这个:

   <a  href="/userProfile?userId={{staff.UserId}}">                                      
   <button type="button" class="btn btn-grey btn-ripple" >Edit profile</button>
   </a>             

完美地工作:)