0
Q
下拉列表
A
回答
1
一個簡單的例子是:
<script type="text/javascript">
function handleClick(e, listElement) {
// Get the element that was clicked on
var el = e.target || e.srcElement;
// If the element has class 'item' ...
if (el && /item/.test(el.className)) {
// Move it from its current list to the other one
if (listElement.id == 'list-0') {
document.getElementById('list-1').appendChild(el);
} else {
document.getElementById('list-0').appendChild(el);
}
}
}
</script>
<ul id="list-0" onclick="handleClick(event, this);">
<li class="item">apple
<li class="item">orange
<li class="item">banana
</ul>
<ul id="list-1" onclick="handleClick(event, this);">
<li>add stuff here...
</ul>
當然有,使在網頁等是有用的高於一切需要一個可怕的很多。
+0
非常感謝。 –
相關問題
- 1. 下拉列表中的下拉列表
- 2. 下拉列表
- 3. 下拉列表
- 4. 下拉列表
- 5. 下拉列表
- 6. django下拉列表
- 7. 下拉列表第
- 8. 3.3.3下拉列表
- 9. 下拉列表(PHP)
- 10. jQuery下拉列表
- 11. 與下拉列表
- 12. Telerik下拉列表
- 13. MVC3下拉列表
- 14. HTML下拉列表
- 15. MVC下拉列表
- 16. iPhone下拉列表
- 17. jquery下拉列表
- 18. 宏下拉列表
- 19. asp.net下拉列表
- 20. 在下拉列表
- 21. onchange下拉列表
- 22. MVC下拉列表
- 23. ASP.NET - 下拉列表
- 24. HTML5下拉列表
- 25. 從下拉列表
- 26. Iphone下拉列表
- 27. 下拉列表項
- 28. cakephp下拉列表?
- 29. ToolTipping下拉列表
- 30. 從下拉列表
什麼問題?請顯示無法使用的代碼。 – Paul
你有什麼到目前爲止已經試過?嘗試搜索並探索JQuery示例。 – legendofawesomeness
我剛開始我想wheather使用Java腳本或jQuery的..好,謝謝,我會使用jQuery泰伊。 –