本文介绍了在引导表中添加链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在bootstrap-table中添加一个列的链接.如何做到这一点?
I want to add a link to a column in bootstrap-table. How to do this?
推荐答案
在您的 HTML 表格中:
In your HTML table:
<th data-field="snum" data-formatter="LinkFormatter">Computer</th>
在您的 javascript 中:
in your javascript:
function LinkFormatter(value, row, index) {
return "<a href='"+row.url+"'>"+value+"</a>";
}
这篇关于在引导表中添加链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!