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.
Jqueryを使用してグリッドビューの行数を取得したいのですが、行数はサイドグリッドにcssクラス名「R1」または「R2」を持つ行のみにする必要があります。
入手方法を教えてください
これを試して:
var len = $('#gvCartItems').find('.R1, .R2').length;
var a = $('#gvCartItems .r1').length; var b = $('#gvCartItems .r2').length; var c = a+b; alert(c);
私が推測する1つの方法です。