【发布时间】:2014-07-02 01:34:27
【问题描述】:
当我的屏幕尺寸低于 880 像素时,我想切换我的 html 中的 html 元素,但是它没有按我的预期工作......
在我的 html 中,我的 php 循环生成的帖子很少,每个帖子看起来像这样:
<div class="post">
<h1>Lorem ipsum</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
</div>
我想要做的是当我的浏览器屏幕达到 880px 及以下时,h1 和 p 元素将使用 jquery insertBefore 相互交换。
下面是我的代码:
【问题讨论】: