Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqgrid 文档中提供的大多数示例都以带有 id 的 table 标记开始。我们可以使用 div 或任何其他 html 标签创建/初始化网格吗?
快速浏览 jqGrid源代码将显示以下代码段:
if(this.tagName.toUpperCase()!='TABLE') { alert("Element is not a table"); return; }
所以元素必须是表格。
没有明确检查id属性,但它在多个地方用于构建周围元素,因此您也应该保留它。
id