求高人 解答用JavaScript获取gridview中客户端控件的值
数量列的控件是客户端的,要求当数量时。对应的合计值也改变并且页面不刷新,用JavaScript做,,最好在下面还有总价删除总价变化就是类似于淘宝购物车...
数量列的控件是客户端的,要求当数量时。对应的合计值也改变并且页面不刷新,用JavaScript做,,
最好在下面还有总价 删除总价变化 就是类似于淘宝购物车 展开
最好在下面还有总价 删除总价变化 就是类似于淘宝购物车 展开
3个回答
2010-12-23
展开全部
<script type="text/javascript">
function addPrice(){
var price=document.frm.txtprice.value;<!-- 获取到物品单价-->
document.frm.txtcount.value=+1;<!--加上1数量-->
var count=document.frm.txtcount.value;<!-- 获取到点击的数量-->
document.frm.txttotal.value=price*count;
}
function cutPrice(){
var price=document.frm.txtprice.value;<!-- 获取到物品单价-->
document.frm.txtcount.value=-1;<!--减去1数量-->
var count=document.frm.txtcount.value;<!-- 获取到点击的数量-->
document.frm.txttotal.value=price*count;
}
</script>
<body>
<form name="frm">
<input name="txtprice" type="text" />
<input type="button" value="-" onclick="cutResult()" />
<input type="text" name="txttotal" />
<input type="button" value="+" onclick="addResult()" />
</form>
</body>
function addPrice(){
var price=document.frm.txtprice.value;<!-- 获取到物品单价-->
document.frm.txtcount.value=+1;<!--加上1数量-->
var count=document.frm.txtcount.value;<!-- 获取到点击的数量-->
document.frm.txttotal.value=price*count;
}
function cutPrice(){
var price=document.frm.txtprice.value;<!-- 获取到物品单价-->
document.frm.txtcount.value=-1;<!--减去1数量-->
var count=document.frm.txtcount.value;<!-- 获取到点击的数量-->
document.frm.txttotal.value=price*count;
}
</script>
<body>
<form name="frm">
<input name="txtprice" type="text" />
<input type="button" value="-" onclick="cutResult()" />
<input type="text" name="txttotal" />
<input type="button" value="+" onclick="addResult()" />
</form>
</body>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询