<button>传值问题,html中js如何用button传值并跳转到一个新的页面

写一个在线电影选座购票的网页,页面效果如图所示。html代码中具体部分代码为:<divclass="demo"><divid="seat-map"><divclass="... 写一个在线电影选座购票的网页,页面效果如图所示。

html代码中具体部分代码为:
<div class="demo">
<div id="seat-map">
<div class="front">屏幕</div>
</div>
<div class="booking-details">
<p>影片:<span>星际穿越3D</span></p>
<p>时间:<span>11月14日 21:00</span></p>
<p>座位:</p>
<ul id="selected-seats"></ul>
<p>票数:<span id="counter">0</span></p>
<p>总计:<b>¥<span id="total">0</span></b></p>

<button class="checkout-button">确定购买</button> (应该是在这里修改)

<div id="legend"></div>
</div>
</div>

CSS中button的代码为:
.checkout-button {
display: block;
width:80px;
height:24px;
line-height:20px;
margin: 10px auto;
border:1px solid #999;
font-size: 14px;
cursor:pointer
}

老师说在button后面写一个action传值,现在纠结应该怎样写,是把右边那些改成一个form表单一起传到一个servlet的action,还是怎样。
我不太会,希望写细一点。
展开
 我来答
sososo的解答
2015-04-01 · 提供各种美女图片欣赏
sososo的解答
采纳数:142 获赞数:735

向TA提问 私信TA
展开全部
首先。action的属性是在form上的。但是要想在另一个页面去获取到表单传递过来的值。需要后台实现。例如php
<form action="get.php" method="get">
<input value="123" name="inputValue">
<button type="submit"></button>

</form>

get.php代码
<?php
echo $_GET["inputValue"];这样就可以输出传递过来的值。
?>

另一种方式就是用到cookie的存储方式去传递。一个页面存值。另一个页面去读取。
同样的方式还有localstorage的本地存储方式去传递。
回忆526
推荐于2017-10-12 · TA获得超过4165个赞
知道大有可为答主
回答量:3276
采纳率:87%
帮助的人:1885万
展开全部
html中js用button传值并跳转到一个新的页面,我们首先需要的获取到button这个对象,还有button要传的值,然后在通过去Location加上地址链接就行了,这里我写段代码:
<!doctype html>
<html>
<head>
</head>
<script>
var obut = document.getElmentById('but');

Location:'地址链接'; //location的链接地址
alert(obut .value); //获取到button的值
</script>
<body>
<input type='button' value='确认' id='but'>

</body>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式