我可以在下拉列表中使用.jsp文件作为onChange的参数吗?像这样:
<td><select name="transporter" onchange="debusTransporter.jsp">
答案 0 :(得分:1)
答案是否。
onchange属性设置并返回change事件的事件处理程序。
The term event handler may refer to:
<button onclick="alert(this)">
或window.onload = function() { /* ... */ }
。