我在尝试将以下重载放入jquery按钮时收到错误“加载页面错误”。
<a href="#" data-role="button" data-inline="true">True</a>
下面是我想要放入jquery按钮的url。
@Html.ActionLink("Jobs", "Jobs", New With {.id = currentItem.Cust_UUID})
以下是我想要实现但我收到的错误:
<a href="@Html.ActionLink("Jobs", "Jobs", New With {id = currentItem.Cust_UUID})" data-role="button" data-icon="arrow-r" data-iconpos="right" data-inline="true">Right</a>
这行代码工作正常,但按钮文字带下划线,而不是我想要实现的:
<h3 data-role="button" data-icon="gear" data-theme="d">@Html.ActionLink("Jobs", "Jobs", New With {id = currentItem.Cust_UUID})</h3>