有没有人知道为什么这不起作用?我不知道我能做什么,我很欣赏那些知道我做错了的人。 错误:
" getTipe"不存在。
<div class="modal-body">
<p>
@Html.TextBox("newTipe", null, new { @class = "form-control" })
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-white" data-dismiss="modal">Close</button>
@Html.ActionLink("Edit", "TipeService", "Edit", new { tipe = getTipe }, new { @class = "btn btn-success" })
</div>
<script type="text/javascript">
function getTipo() {
return $("#newTipe").val();
}
</script>
答案 0 :(得分:1)
错误消息非常清楚,告诉您没有名为var clocks = document.getElementsByClassName("demo");
var x = setInterval(function() {
for (var clockIndex = 0; clockIndex < clocks.length; clockIndex++) {
//Handle the clock identified by clocks[clockIndex]
//If the given clock is expired, then continue;
//If all of them are expired, then clearInterval(x);
}
}, 1000);
的变量。所以,你想在客户端获取动作链接的get参数。你应该改变你的方法。您可以将getTipe
事件分配给onclick
,并在ActionLink
中添加获取参数。
href