我有一个函数在 GET 中调用带有此信息的脚本:
color = color_class(statistics[0]);
class = get_class(statistics[0]);
class = '<font style="color:'+color+';">'+class+'</font>';
switch(stage){
case 1: call_file('tut_class.php?choice='+class,'main'); break;
}
这看起来像这样:
<font style="color:#0d84b6;">Class One</font>
但在控制台中显示如下:
tut_class.php?choice=%3Cfont%20style=%22color: //the rest is missing
所以我无法在 PHP 脚本中获取它来显示。有没有办法解决这个问题?