mvc怎么使用JavaScript在view和controller之间传递数据
1个回答
展开全部
1.ajax传参到后台
$.ajax({
url: "@Url.Content("~/CaseQRCode/SetMarkData")",
data:{bh:'@BH'},
success: function (result) {
if (result.state) {
}
}
});
2.隐藏域
<input type='hidden' name="bh" value='123'>
3.get请求
window.location.href="/home/index?id=123"
4.表单提交Post
$.ajax({
url: "@Url.Content("~/CaseQRCode/SetMarkData")",
data:{bh:'@BH'},
success: function (result) {
if (result.state) {
}
}
});
2.隐藏域
<input type='hidden' name="bh" value='123'>
3.get请求
window.location.href="/home/index?id=123"
4.表单提交Post
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |