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スクリプトで取得できません。これを解決する方法はありますか?