我有一个文本框,我必须在其中写入一个值,如果我使用 ActionLink 调用我的控制器,如何在我的控制器中传递这个值,这是我的代码:
看法:
@Html.TextBox("tisch", "", new { @class = "teschChange"})
@Html.ActionLink("Apply Command", "ApplyCommand", "Work")
这是脚本
<script type="text/javascript">
$(function test() {
$(".teschChange").change(function () {
var tisch = $(this).attr('value');
});
});
</script>
我必须在 ApplyCommandController 中发送 tisch 谢谢