gpt4 book ai didi

jquery - 添加图像作为 jquery 数据表中的行值

转载 作者:行者123 更新时间:2023-12-01 02:32:34 24 4
gpt4 key购买 nike

我有一个来自服务器的 json 响应,如下所示

{"id":20,"name":"d","jobid":"22","workflow":"Diagnostic","**status**":"COMPLETE"}...

我的js函数是这样的,

var oTable = $('#myTable').dataTable({
'sPaginationType': 'sample',
"bStateSave": true,
"bServerSide": true,
"bDestroy": true,
"sAjaxSource": "/someurl"
});​

我能够在数据表中显示这些数据。但是根据 json 响应中的状态值,我需要提供图像作为数据表行值。(说 img1 代表状态“完成”...)..

我必须使用 jquery 来执行此操作,才能使用 jquery 数据表进行显示。

请帮忙

最佳答案

只需在 JSON 中添加图像

{
"id": 20,
"name": "d",
"jobid": "22",
"workflow": "Diagnostic",
"**status**": "<img src=\"img1.jpg\">"
}

如果你想根据状态切换图像。只需通过条件语句进行切换即可。

例如:

if($status == "complete"){
$img = "<img src=\"img1.jpg\">";
}
else{
$img = "<img src=\"img1.jpg\">";
}

然后使用 img 变量构建 json。

关于jquery - 添加图像作为 jquery 数据表中的行值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12713238/

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