去掉dede
中自定義附件類型字段調(diào)用后的TABLE標(biāo)簽
時(shí)間: 2018-12-06 11:51
閱讀: 次
作者:素材無憂網(wǎng)
在用織夢(mèng)dedecms做一下下載的模型時(shí),會(huì)用到新加字段下載,但是 dede默認(rèn)的自定義附件里面有<table>去掉DEDE中自定義附件類型字段調(diào)用后的TABLE標(biāo)簽
方法一:
我們?cè)谑褂胐ede網(wǎng)站建設(shè)時(shí),自定義附件,讀取是會(huì)出
<table width='300'>
<tr>
<td height='30' width='20'><a href='/uploads/soft/100602/1-10060221235523434.zip' target='_blank'><img src='~cfg_phpurl~/img/addon.gif'border='0' align='center'></a></td><td><a href='/uploads/soft/100602/1-100602212355.zip'target='_blank'><u>/uploads/soft/100602/1-10060221235523434.zip</u></a></td>
<tr></table>
我們?cè)谙到y(tǒng)內(nèi)容模型中添加附件類型字段時(shí),前臺(tái)需要用{dede:field name='字段名'/}來調(diào)用。
例如我在后臺(tái)發(fā)布一篇文章,上傳一個(gè)zip的附件,字段的時(shí)間內(nèi)容是:'/uploads/soft/100602/1-10060221235523434.zip',而前臺(tái)則顯示下面的內(nèi)容。
<table width='300'>
<tr>
<td height='30' width='20'><a href='/uploads/soft/100602/1-10060221235523434.zip' target='_blank'><img src='~cfg_phpurl~/img/addon.gif'border='0' align='center'></a></td>
<td><a href='/uploads/soft/100602/1-100602212355.zip'target='_blank'><u>/uploads/soft/100602/1-10060221235523434.zip</u></a></td>
<tr>
</table>
而我只想調(diào)用'/uploads/100602/1-10060221235523434.zip',怎么辦?
下面就是去除多余table代碼的修改方法:
1、打開文件 /templets/system/channel_addon.htm
2、把里面的代碼全都刪掉,只寫~link~即可。
方法二:
{dede:field.字段名 runphp='yes'}
@me=strip_tags(@me);
{/dede:field.字段名}
標(biāo)簽: