**第1列、第2列和第3列搜索栏可运行。我的 AssignedUser
列由图像及其标题(用户名)组成,当您将光标移动到图像上时,这些标题会显示出来。如何修复此列中的搜索栏?
下面是我的javascript代码,我在第1、第2和第3列搜索时使用这些代码**
var column = $(this);
$('#userList1 thead tr').clone(true).appendTo('#userList1 thead');
$('#userList1 thead tr:eq(1) th').each(function (i) {
var title = $(this).text();
var thID = $(this).attr('id');
if (thID != "nosearch"/* && thID != "selectoption"*/) {
$(this).html('<input type="text" placeholder="Search " id="searchbox"/>');
$('input', this).on('keyup change', function () {
if (table.column(i).search() !== this.value) {
table
.column(i)
.search(this.value)
.draw();
}
});
}
我的 img
标签如下;
if (item.AssignedUserPhoto != "") {
<img id="profilePhotoimg" name="@item.AssignedUserID" src="@item.AssignedUserPhoto" value="@item.ID" title="@item.AssignedUserNAme")" />
}
暂无答案!
目前还没有任何答案,快来回答吧!