MVC JS中非表单元素路由传值
<span id="a" onclick="aaa(111)" style="cursor:pointer;">跳</span>
JS:
function aaa(sss) { window.location.href = "@Url.Action("index0", "Home")/"+sss; // window.location.href = "http://localhost:56013/Home/index0/"+sss; }
完!!
<span id="a" onclick="aaa(111)" style="cursor:pointer;">跳</span>
JS:
function aaa(sss) { window.location.href = "@Url.Action("index0", "Home")/"+sss; // window.location.href = "http://localhost:56013/Home/index0/"+sss; }
完!!