1
我有一個包含了一組鏈接的div和我的目標是通過內容的鏈接進行自動排序,請按照下面的例子爲更好地理解:的Javascript:通過內容是一個div裏面排序鏈接
之前
<div id="sort-this-div">
<a href="http://something45yer.com">Content3</a>
<a href="http://somethingeyerty.com">Content1</a>
<a href="http://somethingfwegrw.com">Content2</a>
<a href="http://somethingt43rwer.com">Content4</a>
</div>
後
<div id="sort-this-div">
<a href="http://somethingeyerty.com">Content1</a>
<a href="http://somethingfwegrw.com">Content2</a>
<a href="http://something45yer.com">Content3</a>
<a href="http://somethingt43rwer.com">Content4</a>
</div>
非常感謝!這就是我一直在尋找的! – Shadow 2010-12-12 08:14:55