我正在使用表進行佈局。然而,隨着數據角色=「表」我收到以下錯誤:數據角色=「表」的錯誤jquery-mobile
"Uncaught TypeError: Cannot call method 'not' of undefined ".
我使用 jQuery的1.9.1.min.js;
jquery-ui.min.js;
jquery.mobile-1.3.1.min.js版本。
如果我刪除數據角色,那麼表結構會受到影響。數據角色表選項應如何避免此錯誤?
empDetails += '<table data-role="table" id="table-custom-2" border="0" >';
empDetails += '<tbody><tr><td colspan="100%"><img id="emailimg" src="images/email.png" class="imgshape"><IMG style="width:25px;height:5px;vertical-align:middle" SRC="images/spacer.gif" />';
empDetails += stremail+'</span></a></td></tr>';
empDetails += '<tr><td colspan="100%"><img id="emailimg" src="images/tel.png" class="imgshape"><IMG style="width:25px;height:5px;vertical-align:middle" SRC="images/spacer.gif" />';
empDetails += strphone+'</td></tr>';
empDetails += '<tr><td colspan="100%"><img id="emailimg" src="images/cell.png" class="imgshape"><IMG style="width:25px;height:5px;vertical- align:middle" SRC="images/spacer.gif" />';
empDetails += strcellphone+'</td></tr>';
empDetails += '</tbody></table>';
$('#userdetails').html(empDetails);
MAngesh
你能證明你的實際代碼? –
我懷疑這是拋出錯誤...發佈你relted代碼.. – bipen
請確保您的jQuery Mobile和jQuery版本兼容,並確保您沒有使用任何其他版本的任何在同一頁。 – Archer