我有一个图像类型按钮的问题,这是我的代码:
<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();">
它工作。但如果我把按钮类型的图像它不起作用。