0
A
回答
2
你在找這樣的嗎?
HTML:
<div id="listView"></div>
<input type="button" id="mybutt" value="Submit" />
的javascript/jQuery的:
$('#mybutt').click(function() {
var out = '<ul><li>Item One</li><li>Item Two</li><li>Item Three</li></ul>';
$('#listView').html(out);
});
響應您的評論:「我需要的是按鈕形式的點擊被提交,並且用戶在表單中輸入姓名將在列表中會添加」
首先,你需要保持頁面上的形式是後提交。要做到這一點,你應該在你提交例行添加e.preventDefault();
:
$("#target").submit(function(event) {
//Manually collect form values and
//Use ajax to submit form values here (see notes at bottom)
event.preventDefault();
});
接下來,你想那是在所需的字段中的數據,並添加到<ul>
。因此,如上所示更改如下:
$("#target").submit(function(event) {
var fn = $('#fname').val();
$('ul').append('<li>' +fn+ '</li>');
//Manually collect form values and
//Use ajax to submit form values here (see notes at bottom)
event.preventDefault();
});
對於AJAX位,see this post提示。
注意,您可以使用$('#formID').serialize();
快速序列化所有形式的數據。
0
爵士小提琴:
HTML:
<div id="listView"></div>
<input type="text" name="firstname"/>
<input type="text" name="lastname"/>
<input type="button" id="mybutt" value="Submit" />
的jQuery:
$('#mybutt').click(function() {
var out = '<ul>';
$("input[type=text]").each(function() {
out += "<li>" + $(this).val() + "</li>";
});
out += "</ul>";
$('#listView').html(out);
});
相關問題
- 1. 在jQuery Mobile中動態添加項目到列表視圖
- 2. 如何在Monodroid中動態添加項目到列表視圖
- 3. 如何在winforms中動態添加項目到列表視圖
- 4. 如何使用jQuery在列表中間添加列表項目
- 5. 動態添加項目WPF列表框
- 6. 如何在jQuery中添加列表項?
- 7. SweetAlert下拉列表動態添加列表中的項目
- 8. 動態添加項目到列表視圖(jQuery Mobile的)
- 9. 用jQuery刪除動態添加的LI列表項目
- 10. 如何在我們的項目中動態添加新項目?
- 11. 如何在MVC中添加項目的靜態列表Html.DropDownList()
- 12. VB - 如何動態添加列表頂部的項目
- 13. 如何添加項目到動態列表的頂部
- 14. jQuery - 我如何動態地將列表項添加到無序列表中?
- 15. 在動態列表視圖中搜索和添加項目
- 16. 在MediaElement播放器中動態添加播放列表項目
- 17. JQuery addClass不能動態添加項目
- 18. 使用jQuery可排序動態添加列表(不僅僅是動態項目)
- 19. 如何在android中動態添加列表項?
- 20. 如何在此列表中添加子項目活動?
- 21. 如何動態添加tabbar項目ipad
- 22. c#在列表框中動態添加項目 - 未顯示項目
- 23. 如何動態添加jquery選項卡
- 24. 在kendo combobox中動態添加項目
- 25. 如何在按鈕單擊時靜態添加列表項目?
- 26. 如何在jquery自動填充中添加新項目選項?
- 27. 在單選按鈕列表中動態添加子列表視圖項目
- 28. 選擇項目動態添加到菜單項列表
- 29. 如何將項目動態添加到GWT中的列表框中
- 30. 動態添加項目到asp.net中的未定單列表
結帳http://handlebarsjs.com/,現在就在我的一個項目中完成這件事。 –
我是新來的,所以我剛剛瀏覽了http://api.jquerymobile.com/listview/,但不知道如何繼續。請提供一些提示 – Trupti
我第二次在上面的例子中使用handlebarsjs – Charles380