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.
ページ上のテーブル行 (AJAX コンテンツを含む) に「当座貸越」のクラスがあるかどうかを判断しようとしています。これは私が使用しているコードですが、機能していません。私が使用しているコードが動的データを考慮に入れているのか、それともページの読み込み時にのみ実行されるのかはわかりません。
(function() { if( $('tr').hasClass('overdraft'){ $('#btnSAMSubmit').hide(); } // end if })();
一見すると、あなたは)
)
if( $('tr').hasClass('overdraft')) // <-- This last ) is missed on your code { $('#btnSAMSubmit').hide(); }