我无法通过asp.net mvc中的actionlink按钮调用javascript函数 submitForm()是我的功能 我的代码是 - :
<script type="text/javascript">
function submitForm(state) {
if (state != "") {
var ele = document.frmuser.elements;
var strvalue = "";
for (var i = 0; i < ele.length; i++) {
if (ele[i].type == "checkbox") {
if (ele[i].name == "chkactive[]") {
if (ele[i].checked == true) {
//var a = ele[i].value; alert(a);
if (strvalue != "")
strvalue = strvalue + "," + ele[i].value;
else
strvalue = ele[i].value;
}
}
}
}
alert(strvalue);
if(strvalue != "" && state !="")
{
//alert(strvalue);
if (state == "active") {
location.href = '<%=Url.Action("Deletechkuser")%>' + '/' + $('select[name=chkactive[]]').val();
}
if(state == "deactive")
{
location.href = '<%: Url.Action("Deletechkuser", "Home" )%>doctors/updateStatus/' + strvalue + '/is_active/N/' + document.getElementById('hdcurpage').value + '/' + document.getElementById('hdsortkey').value + '/' + document.getElementById('hdsortdir').value;
}
if(state == "delete")
{
location.href = '<%: Url.Action("Deletechkuser", "Home" )%>' + strvalue + '/is_deleted/Y/' + document.getElementById('hdcurpage').value + '/' + document.getElementById('hdsortkey').value + '/' + document.getElementById('hdsortdir').value;
}
}
else
{
alert('Please Select Atleast One Record');
document.getElementById("actions").options[0].selected=true;
}
}
}
</script>
上面的代码是我的javascript函数,现在我想传递所有选择值,其中strvalue计数得到控制器我做什么我不知道,我无法在按钮点击上调用函数submitForm()
< / p>
我的按钮代码是 - :
<button class="deletebutton radius3" id="delete" onclick="location.href='<%: Url.Action("Deletechkuser", "Home", new { id= submitForm(this.id);} )%>'">
delete</button>
答案 0 :(得分:0)
我无法理解这一行:
我想传递所有选择值,在strvalue中计数得到控制器我做什么我不知道
如果您在单击ActionLink时调用javascript
函数,则应订阅onclick
事件。
@Html.ActionLink("Link Text","ActionName","ControllerName",new { @onclick="MyFunction();" },null)
这是脚本:
<script type="text/javascript">
function MyFunction(){
//Do something
alert('Hello world');
}
</script>
希望它有所帮助。