我有一个可编辑的表使用" mindmup-editabletable.js"我的问题是第一次打字输入是可以的。下次当我点击同一行进行编辑时,第一个condent阴影只显示在chrome中,其他的bowers工作正常。
$('#table').editableTableWidget({
cloneProperties: ['background', 'border', ]
});
答案 0 :(得分:1)
请勿将表格单元格的背景属性克隆到覆盖的input
,或将背景单元格background-color
设置为某种纯色。
$('#table').editableTableWidget({
cloneProperties: ['border']
});
或
#table td {
background: none #fff;
}