画像タイプのボタンに問題があります。コードは次のとおりです。
<script>
function test5(){
var u = document.getElementById("id").value;
var url = "exceljsp.jsp";
url += "?id=" + u;
javascript:window.location.href = url;
}
</script>
<form id="form" name="form" mrthode="get">
<table align="center">
<td> <p>Code FRs </p> </td><td> <input type="text" name="id" id="id" value="" /></td>
<td> <td>
<td> <p>Nom ou RS </p> </td><td><input type="text" name="nom" id="nom" value="" /></td>
</table>
<input type="image" src='excel.png' name="look excel table" onclick="test5();">
はjavascript:window.location.href = url;
機能していないようです。私が置く<input type="button" name="look excel table" onclick="test5();">
とうまくいきます。しかし、ボタン型の画像を入れるとうまくいきません。