当页面中使用table布局时,如DOM结果如下,就无法使用Panel控件来动态添加内容,因为当tr那段代码被插入div中时,会自动转化为div了([插入div的代码](https://github.com/ecomfe/esui/blob/master/src/Panel.js#L143-L144)),导致无法使用: ```html <table> <thead> <tr> <th>1</th> <th>2</th> </tr> </thead> <tbody data-ui-type="Panel"> </tbody> </table> <!-- target: xxx --> <tr> <td>1</td> <td>2</td> </tr> ```