只需删除data-role =表:
这里有一个 的 DEMO 强>
<table id="MyTable" class="ui-responsive table-stroke"> <thead> <tr> <th class="left">Col 1</th> <th class="right">Col 2</th> </tr> </thead> <tbody> <tr> <td class="left">Row 1 Col 1</td> <td class="right">Row 1 Col 2</td> </tr> <tr> <td class="left">Row 2 Col 1</td> <td class="right">Row 2 Col 2</td> </tr> <tr> <td class="left">Row 3 Col 1</td> <td class="right">Row 3 Col 2</td> </tr> <tr> <td class="left">Row 4 Col 1</td> <td class="right">Row 4 Col 2</td> </tr> </tbody> </table> #MyTable { width: 100%; } #MyTable .left { text-align: left; } #MyTable .right { text-align: right; }