0

everyone, excuse my language I speak Spanish and I use google translator

I have a question I can appear and disappear as one scroll depending on the size of the table for example when the table arrives at a height of 300px, visible display scroll in css o java

How I can do that?

regards

4

1 に答える 1

1

Claro que si, pero no css. Eso es un ejemplo con jQuery (私のスペイン語で申し訳ありません):

確かにできますが、css ではできません。jQuery を使用した例を次に示します。

if ($('#table_id').css('height') >= 300) {
    $('#scroll_id').show();
else
    $('#scroll_id').hide();
于 2013-08-28T01:13:44.900 に答える