将文本内部移动到前面

时间:2014-06-25 17:22:50

标签: jquery html

我想在<td&gt;

之后立即移动此部分“我想要移动的某些文字”

我的HTML代码

<td>
  <img src="" height="5" width="150">
  <br>
  <table></table>
  <form method="POST"></form>
  "Some text I want to move"
</td>

我想要这个:

HTML CODE

<td>
    "Some text I want to move"
    <img src="" height="5" width="150">
    <br>
    <table></table>
    <form method="POST"></form>
</td>

谢谢。

0 个答案:

没有答案