在report_path字段中,我正在尝试使图像路径可单击并将用户传递给图像。
$query = ("select
a.id as id,
a.result,
a.result_date,
a.created_at,
b.employee as 'Created By',
case
when a.in_range='1' then 'IN' else 'OUT'
end as in_range,
case when a.fax='1' then 'YES' else 'NO' end + ' | ' +
case when a.email= '1' then 'YES' else 'NO' end as 'Pending<br>Fax | Email',
report_path as '<a href='' + url + ''>report_path</a>',
result
from " . table('inrult') . " a
left outer join " . table('emp') . " b on a.created_by=b.id
where a.patient_id={$patient->hex} and (a.inactive is null or a.inactive=0) order by result_date desc");
这并不像我想象的那样完全正常。我做错了什么?
inspect元素显示表格行事件链接,而不是字段事件链接。
<td onclick="go2("index.php?ae/nic/edit&_id=ACS00&id=5");">_INR\5_2013-03-15.pdf</td>
所以当我点击该行的任何地方时,它会转到上面的链接,但我无法为表格中的特定字段指定不同的链接...我希望这更有意义。