我想在webgrid中使用jquery禁用编辑的图像链接 我的代码如下。
grid.Column("Edit", format: id => new HtmlString(Html.ActionLink("[Edit]", "myactionname", "mycontrollername", new { id = id.Id }, new { @class="edit"}).ToHtmlString().Replace("[Edit]", "<img src=\"/images/edit_icn.png\" ... />")))
我的jquery代码是
<script type="text/javascript">
$(document).ready(function () {
alert("inside function")
$('.edit').attr("disabled", true);
alert("outside function");``
});
但链接没有被禁用..请帮帮我。
答案 0 :(得分:0)
How is the correct way to disable an input type="image" using jquery? 你可以查看这个堆栈溢出链接它类似于你的问题,可能它可以帮助你
答案 1 :(得分:0)
开始工作!! .... 替换了我的jquery代码并且它有效。
<script type="text/javascript">
$(function () {
$(".edit").click(function () {
return false;
});
});