我有一些表格的重复。每个表单都有一个按钮 - 编辑配置文件,需要使用$ 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:\\"
网址。
有什么建议吗?
由于
答案 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>
完美地工作:)