0

我在 php 中嵌入了 JQuery Mobile,如下所示:

    echo '<p id="recordsfound">'.$recordcount ." records found. Enter text to filter records.</p>";        
    echo '<ul data-role="listview" data-theme="b" data-filter="true" id="lview">';

而CSS是:

#recordsfound {padding-bottom: 25px; padding-top:0;}

css 已完成,因为文本垂直重叠列表过滤区域。

但是直到我点击刷新按钮才需要。(?!)所以我尝试使用 JQuery 在加载 JQM 后更改 css。

jquery 看起来像这样:

$( '#getclient' ).live( 'pageload',function(event){ //I have also tried pageinit
    $('#recordsfound').css({"padding-bottom":"25px"});    
    $('#recordsfound').css({"padding-top":"0"});
 });

这没有效果。

我很确定它与 listview 过滤器有关,因为我在其他地方没有这些 css 问题。

提前感谢您的任何建议和您的时间。

4

0 回答 0