如何在php中使用锚标记来使用href属性

时间:2014-02-28 07:39:23

标签: php

我写过

echo '<a href="javascript:q=(document.location.href);void(open('http://example.com/submit.php?url='+escape(q),'_self','resizable,location,menubar,toolbar,scrollbars,status'));">'.'click here'.'</a>'

在php文件中提供

意外:标识符'http'

错误。请给我解决方案。

1 个答案:

答案 0 :(得分:0)

 echo'<a href="javascript:q=(document.location.href);void(open(\'http://example.com/submit.php?url=\'+escape(q),\'_self\',\'resizable,location,menubar,toolbar,scrollbars,status\'));">click here</a>'

你需要在你的回声中转义引号试试这个