我使用:從jquery.dataTables.js:https://datatables.net數據表與JSON數據使TR行可點擊
我試圖讓每個TR有一個鏈接,但由於某種原因,這是行不通的,我在試着運行我的控制檯上的鉻和作品,有人可以解釋我爲什麼我不能在我的元素中插入此鏈接?
它與json數據有關?
HTML:
<div class=" dashboard">
<div class="col-md-8 no-padding">
<div class="form-group col-md-4 no-padding">
<select class="form-control" id="sel1">
<option value="Filter by">Filter by country </option>
<option value="All">All</option>
<option value="China">China</option>
<option value="EUA">EUA</option>
<option value="Spain">Spain</option>
</select>
</div>
</div>
<br>
<br>
<table id="example" class="display" width="100%" cellspacing="0">
<thead>
<tr>
<th>First name</th>
<th>Place</th>
</tr>
</thead>
</table>
的jQuery:
$(document).ready(function() {
var dt = $('#example').dataTable();
dt.fnDestroy();
});
$(document).ready(function() {
var url = 'http://www.json-generator.com/api/json/get/crcCiZXZfm?indent=2';
var table = $('#example').DataTable({
ajax: url,
columns: [{
data: 'name'
}, {
data: 'place'
}]
});
$('#sel1').change(function() {
if (this.value === "All") {
table
.columns(1)
.search('')
.draw();
} else {
table
.columns(1)
.search(this.value)
.draw();
}
});
});
$(document).ready(function() {
$('#example tbody tr').attr('onclick', "document.location = 'edit.html'");
});
的jQuery我想插入:
$('#example tbody tr').attr('onclick', "document.location = 'edit.html'");
的jsfiddle但不使用jQuery以上: http://jsfiddle.net/f7debwj2/
簡單實用,謝謝。 – Raduken