怎样实现在 特定jsp页面中 每点击一次按钮 在文本框内的点击数增加1
1个回答
展开全部
你指的是要javascript实现的功能还铅告是jsp动态java实现的功能?
js实现槐洞明的如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
var nums;
window.onload = function()
{
nums = document.getElementById("num").value;
document.getElementById("btn").onclick = changeNum;
};
function changeNum()
{
nums++;
document.getElementById("num").value = nums;
}
</script>
</head>
<body>
<form action="#" method="post">
数字:<input type="text" id="num" readonly="颤稿readonly" value="0"/>
<input type="button" id="btn" value="增加"/>
</form>
</body>
</html>
js实现槐洞明的如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script>
var nums;
window.onload = function()
{
nums = document.getElementById("num").value;
document.getElementById("btn").onclick = changeNum;
};
function changeNum()
{
nums++;
document.getElementById("num").value = nums;
}
</script>
</head>
<body>
<form action="#" method="post">
数字:<input type="text" id="num" readonly="颤稿readonly" value="0"/>
<input type="button" id="btn" value="增加"/>
</form>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询