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"); } });