2

我的问题:

我有一个带有表格的css div(jquery-mobile 1.0),-如果我在div(溢出)中添加太多行,触摸事件不会触发javascript函数......知道吗?

它不会触发函数和“溢出,在它正常工作之前!)

$('#mytable').append('<tr><td width=20%>
    <a href=add.html onclick=setId('+row.UserId+');>
    <img src=./icons/patientendaten.png width=48px height=48px></a></td>
    <td width=20%>'+row.Datum+'</td><td width=20%>'+row.Patient+'</td>
    <td width=20%><center><a href=# onclick=delete_entry('+row.UserId+');>
         <img src=./icons/delete.png></a></center></td><td width=20%><center>
         <img src=./icons/edit.png></center>
    </td></tr>'); 

更多细节:

<div data-role="content">  

    <div id="twitter">

       <div class="ui-grid-d">
        <div class="ui-block-a"><div class="ui-bar ui-bar-d">Akte</div></div>
        <div class="ui-block-b"><div class="ui-bar ui-bar-d">Datum</div></div>
        <div class="ui-block-c"><div class="ui-bar ui-bar-d">Patient/in</div></div>
        <div class="ui-block-d"><div class="ui-bar ui-bar-d">Löschen</div></div>
        <div class="ui-block-e"><div class="ui-bar ui-bar-d">Fallbeisp. erstellen</div></div>
        <br>

    <table id=mytable>

    </table>

  </div>
     </div>
         </div>

我在 android 3.2 上使用 jquery mobile 1.0 和最新的 phonegap 1.7

此外,logcat 给了我(当我添加第 6 行时)

05-24 23:59:18.030:E/libEGL(16161):在没有当前上下文的情况下调用 OpenGL ES API(每个线程记录一次)

05-24 23:59:18.030: D/ShaderProgram(16161): 无法加载顶点着色器!

这是我的div:

div 示例

日志猫:

05-23 17:05:51.800: V/webview(30492):  singleCursorHandlerTouchEvent -getEditableSupport  FASLE 
4

1 回答 1

1

我想出了蓝色 div 是问题的解决方案...jquery-mobile/phonegap 有导致错误的溢出问题!

05-24 23:59:18.030: E/libEGL(16161): call to OpenGL ES API with no current context (logged once per thread)

05-24 23:59:18.030: D/ShaderProgram(16161): couldn't load the vertex shader!

#twitter {
    position:absolute;
    top:140px;
    left:40px;
    width: 880px;
    height: 400px;
    border: 5px solid;
    border-color: #458d91;
    -moz-border-radius:16px;
    -khtml-border-radius:16px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 10px;
    padding-top: 10px;
    padding-left:10px;
    padding-right:10px;
    padding-bottom: 10px;
    overflow: auto;
  }

如果我删除溢出和高度,那么没有任何问题。

在这种情况下使用列表可能是更好的方法。

我还尝试了不同的 jquery-mobile、jquery - 结合不同的 phonegap 版本 - 这是在三星 Galaxy 10.1 平板电脑 - android 3.2 上测试的

希望这可以帮助。

于 2012-05-25T08:07:30.797 回答