複数のGETリクエストでURL内のアンパサンドのため%26または%のアンプを使用することができません
URL文字列は、私も を試してみました'submit.php?p='+precision+'&r='+recall+'&a='+accuracy;
ある
document.writeln("<form name='statistics' action='submit.php?p='+precision+'&r='+recall+'&a='+accuracy; onsubmit='return validateForm()' method='get'>")
document.writeln("<button style = 'font-size: 32px; float : right'class = 'button' > See results </button>")
document.writeln("</form>")
を次のように私のURLは
'submit.php?p='+precision+'%26r='+recall+'%26a='+accuracy;
しかし、どちらもブラウザにアンパサンドを与えません。
次のように私は両方のケースのための私のブラウザで取得するURLは -
http://localhost/WT2ASST1/submit.php?p=1r=0.4a=0.4
私は、フォームの送信とURLに関しては、他の関連するコードを追加していません。
私のURLにアンパサンドを得るには何が必要ですか?