我已经阅读了类似的线程,但我不知道如何转义以下字符串中的字符:
$var = '<a href="'.$confUrl.'/index.php?a=profile&u='.$TMPL['username'].'&r=2"></a>';
由于某种原因href
不起作用,但不知何故window.location.assign(x)
。
我正在尝试将上述无效代码转换为以下代码:
$var = '<a onclick="window.location.assign('.$confUrl.'/index.php?a=profile&u='.$TMPL['username'].'&r=2')"></a>';