我必须在按钮点击时调用带参数的函数。在给定的代码SaveAmount(@item.Name)
中,函数被调用参数@item
。输入错误,但Uncaught SyntaxError: Unexpected identifier
这是我的Html代码: -
@foreach (var item in ViewBag.countries)
{
<td><button type="button" class="btn-primary" id="cnt" onclick="saveAmount(@item.Name)">Update</button></td>
}
这是我的功能: -
function saveAmount(btnId)
{
alert("hiiii"+btnId);
}
答案 0 :(得分:1)
试试这个。 onclick="saveAmount('"+@item.Name+"')"
答案 1 :(得分:0)
您需要将id放在双引号中,即id =“cnt”。试试这个