gpt4 book ai didi

jquery - 使用 Jquery jTable 在单元格中显示图像

转载 作者:搜寻专家 更新时间:2023-10-31 22:46:16 25 4
gpt4 key购买 nike

我正在使用 JQuery jTable 插件来显示我的表格记录。

$(document).ready(function () {

//Prepare jTable
$('#PeopleTableContainer').jtable({
title: 'Table of people',
paging: true,
pageSize: 2,
sorting: true,
defaultSorting: 'Name ASC',
actions: {
listAction: 'PersonActionsPagedSorted.php?action=list',
createAction: 'PersonActionsPagedSorted.php?action=create',
updateAction: 'PersonActionsPagedSorted.php?action=update',
deleteAction: 'PersonActionsPagedSorted.php?action=delete'
},
fields: {
PersonId: {
key: true,
create: false,
edit: false,
list: false
},
Name: {
title: 'Author Name',
width: '40%'
},
Age: {
title: 'Age',
width: '20%'
},
RecordDate: {
title: 'Record date',
width: '30%',
type: 'date',
create: false,
edit: false
},
Photo: {
title: 'Photo',
width: '50%',
type: 'img',
create: false,
edit: false
}
}
});

//Load person list from server
$('#PeopleTableContainer').jtable('load');

});

您可以看到的最后一列是 Photo。我已将照片路径存储在 mysql 表的相应表中。我想在最后一列中显示图像。这可能使用这个插件吗?我正在用 PHP 开发它。

谢谢。

最佳答案

这应该可以解决您的问题:

Photo: {
title: "Photo",
width: '50%',
edit: false,
create: false,
display: function (data) {
return '<img src=' + data.record.ImageURL + ' />';
}
}

关于jquery - 使用 Jquery jTable 在单元格中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18174810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com