例如,我正在尝试从 url 中获取参数。
www.x.com/?source=display&zone=lc&topic=cloud
所以,如果主题是“云”,那么我想重新订购 3 个单独的 div。
到目前为止,这是我在标题中的内容:
<script type="text/javascript">
if (window.location.search.indexOf('topic=cloud') > -1) {
alert('track present');
$(".one").insertAfter(".two");
} else {
$(".two").insertAfter(".three");
alert('track not here');
}
</script>
和html是这样的:
<div class="one">seo</div>
<div class="two">cloud</div>
<div class="three">social</div>
我收到警报,但是当我使用.insertAfter();
我什么也得不到