这是我在网站页脚部分使用的浮动购物车的一行代码:
<a href=\"https://ww6.aitsafe.com/cf/review.cfm?userid=85247813&return=https://farragio.com/collection/\"_target_ >VIEW CART</a>
我希望“查看购物车”为粗体并采用特定的字体颜色。如果我像下面这样编写它,当我在 HTML 编辑器上尝试它时它会起作用,但是当我将它添加回我网站上的代码时,它会使购物车从网站上消失:
<a href=\"https://ww6.aitsafe.com/cf/review.cfm?userid=85247813&return=https://farragio.com/collection/\"_target_ style="font-weight:bold; color:#cb8f42;">VIEW CART</a>
如果我添加反斜杠,它会重新出现在网站上,但字体会恢复为原始状态,就好像字体提示不存在一样:
<a href=\"https://ww6.aitsafe.com/cf/review.cfm?userid=85247813&return=https://farragio.com/collection/\"_target_ style=\"font-weight:bold; color:#cb8f42;\">VIEW CART</a>
有没有办法编写它,以便字体发生变化并且购物车在我的网站上保持可见?
您可能没有删除所有反斜杠,并且没有任何称为“target”的内容,我们有“target =”_blank',它会为链接打开一个新选项卡。所以,它是:
<a href="https://ww6.aitsafe.com/cf/review.cfm? target="_blank" userid=85247813&return=https://farragio.com/collection/" style="font-weight:bold; color:#cb8f42;">VIEW CART</a>