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.
asp.netで値= 0を見つけたときにリンクボタンを無効にし、値が0のラベルを表示したい。
CssClass を使用してすべてのリンク ボタンをループする javasccript pageLoad に JS コードを追加できます (存在しない場合はダミーの css クラスを追加します)。
function pageLoad() { $('.lbClassName').each(function (item) { if ($(item).val() == '0') { $(item).prop('disabled', true); } }) }