我有以下代碼:在Javascript動態添加錶行HTML表
<body onload="LoadData()">
<table id="myTable">
</table>
</body>
而且我的Javascript功能,如:
<script type="text/javascript">
function LoadData()
{
var sTempTableRow='<tr><td>cell-1 </td><td>cell-2 </td><td>cell-3 </td><td>cell-4 </td></tr>'
$('#myTable').append(sTempTableRow);
}
</script>
我已經試了無數次,在所有的時候,面對的例外如Microsoft JScript runtime error: Object expected
。
請告訴我這裏有什麼問題。
檢查您的jquery js文件是否放置在正確的路徑 –