Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
net MVC & jquery 我需要禁用链接以防文本框中没有输入任何文本。有人可以帮我看看怎么做吗?
$("#linkId").click(function(){ e.preventDefault(); if($("#textFieldId").val().length !== 0){ window.location.href = $(this).attr("href"); } });