0

net MVC & jquery 我需要禁用链接以防文本框中没有输入任何文本。有人可以帮我看看怎么做吗?

4

1 回答 1

0
$("#linkId").click(function(){ 
  e.preventDefault();
  if($("#textFieldId").val().length !== 0){
    window.location.href = $(this).attr("href");
  }
});
于 2013-02-23T09:34:13.217 回答