今天学习了一个超链接传值的方法
其中是超链接传的text文本域的值
其中起到一个方便的作用
在只需修改一个值得时候
再新建一个网页进行form提交
个人感觉有点繁琐
所以算是拓展一下
<button type=button onclick="get()">
<script type="text/javascript">
function get(){
var agent = document.getElementById("agent").value;
window.open("updateagentServlet?houseid="+<%=houseid%>+"&"+"agentid="+agent);
}
</script>