1
如何爲此創建簡單的排序功能。我知道有像插圖一樣的插件。但它不會從下拉列表中排序。或者是插件可以修改,以便它可以從下拉列表中排序。先謝謝你。如何從下拉列表中排序表
HTML:
<form action="#" method="post">
<input type="text" id="UserID" name="UserID" readonly="readonly">
<input type="text" id="UserName" name="UserName" placeholder="Name">
<input type="text" id="UserOccupation" name="UserOccupation" placeholder="Occupation">
<button type="button" name="button">Add</button><br>
</form>
Sort By:
<select>
<option>ID</option>
<option>Name</option>
<option>Occupation</option>
</select>
<table id="table" class="tablesorter">
<thead>
<tr >
<th>ID</th>
<th>Name</th>
<th>Occupation</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
的Javascript:
$(document).ready(function() {
//Set id field to 1
var id = $('#UserID');
id.val("1");
//Add 1 to the id in textbox
function incID(){
var str = id.val();
var int = parseInt(str);
var idVal = int + 1;
id.val(idVal.toString());
}
//When button clicked
$('button').on('click', function(){
//create a new object
var obj = new Object();
//pass value dynamically from input box
obj.id = $('#UserID').val();
obj.name = $('#UserName').val();
obj.occupation = $("#UserOccupation").val();
//display data to the table
var addrow = "<tr><td>" + obj.id + "</td><td>" + obj.name + "</td><td>"+ obj.occupation +"</td></tr>";
$("table tbody").append(addrow);
//Add 1 to id field
incID();
});
});
非常感謝您,先生。沒有tablesorter插件的第一個解決方案完美工作。但我有一個問題。函數sortByNumber中的數字10是什麼?爲什麼你使用for循環? – Amher25
不要介意我在for循環中的最後一個問題。它用於向表格顯示數據。 – Amher25
正確,循環確實用於顯示錶中的數據。 parseInt中的數字10是爲了確保它解析以10爲基數的數字(0-10,10-20等正常人類可讀數字),而不是偶然以8爲基數。如果列中的文本以'0'開頭,可能會發生這種情況。有關詳情,請參閱:https://developer.mozilla.org/nl/docs/Web/JavaScript/Reference/Global_Objects/parseInt – Thomas