jsp中,input的value赋值问题
jsp中,input的value赋值问题<inputid=“path1”type=“text”value=“${filepath}”><inputid=“path2”ty...
jsp中,input的value赋值问题<input id=“path1” type=“text” value=“${filepath}”>
<input id=“path2” type=“text” value=“aa”>
js中改变两个input的值,为什么第一个始终显示的是filepath的值,第二个可以实现想要改变的值。为什么?怎么修改才能让第一行也改变值 展开
<input id=“path2” type=“text” value=“aa”>
js中改变两个input的值,为什么第一个始终显示的是filepath的值,第二个可以实现想要改变的值。为什么?怎么修改才能让第一行也改变值 展开
展开全部
有两种方法:1、url传值,2、表单传值
下面是一个简单的url传值的例子,你一看就会明白
<style>
a{color:blue;text-decoration:underline;cursor:pointer;}
</style>
<script>
function goToNext(){
alert(1);
var nextPage="next.html?value1="+document.getElementById("input1")+"&value2="+document.getElementById
("input2");
window.location=nextPage;
}
</script>
<body>
<input type="text" id="input1">
<input type="text" id="input2">
<a onclick="goToNext();">点击</a>
</body>
下面是一个简单的url传值的例子,你一看就会明白
<style>
a{color:blue;text-decoration:underline;cursor:pointer;}
</style>
<script>
function goToNext(){
alert(1);
var nextPage="next.html?value1="+document.getElementById("input1")+"&value2="+document.getElementById
("input2");
window.location=nextPage;
}
</script>
<body>
<input type="text" id="input1">
<input type="text" id="input2">
<a onclick="goToNext();">点击</a>
</body>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询