我知道这是错的,但我不确定如何。有人可以很好地告诉我它有什么问题吗?
print "<a href="https://www.google.com/chrome/browser/desktop/" target='_blank' class='gemma' style='position: fixed; bottom: 0; right: 0; text-align:right; width:100%; padding:20px;'>Works best in Chrome web browser</a>";
答案 0 :(得分:0)
正确的方法是使用双引号完全正常地编写HTML,然后将字符串包装在单引号中。您还应该使用echo
,而不是print
:
echo '<a href="https://www.google.com/chrome/browser/desktop/" target="_blank" class="gemma" style="position: fixed; bottom: 0; right: 0; text-align:right; width:100%; padding:20px;">Works best in Chrome web browser</a>';