我有一个名为sample的表。该表包含a href
标记内的数据。
我想将表格转换为pdf格式。我的代码是:
var toPDF = function(htmlId, config ){
if( $('#'+htmlId).length > 0)
{
reportParameters['reportString'] = $('#'+htmlId).html();
reportParameters['config'] = JSON.stringify(config);
window.open('url','Page');
}
else
{
alert('Invalid HTML ID');
}
};
function myFunc()
{
var conf = {
'headerCenter':'sample',
'pageSize':'A4',
'headerFontSize':18,
'headerLine':true,
'headerSpacing':2,
'footerLine':false,
'footerCenter':'Date: [date] [time]',
'footerRight':'Page[page]',
'footerFontSize':8,
'footerSpacing':1
}
toPDF('sample',conf);
}
上面的代码工作正常。但我的问题是,pdf数据包含蓝色和下划线的链接数据。
如何删除链接颜色和下划线?
答案 0 :(得分:0)
检查这两个css代码!!
a {color:black;text-decoration:none;}
a:hover{text-decoration:none;color:red;}