在ASP.NET中如何用JAVAScript实现用3个TextBox控件分别显示单价,数量和总额,如何
1个回答
展开全部
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
<!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 runat="server">
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function showText()
{
document.getElementById("TextBox1").value="单价";
document.getElementById("TextBox2").value="数量";
document.getElementById("TextBox3").value="总额";
}
</script>
</head>
<body onload="showText();">迅洞野
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<颤喊asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
</div>
</form>
<亩喊/body>
</html>
<!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 runat="server">
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function showText()
{
document.getElementById("TextBox1").value="单价";
document.getElementById("TextBox2").value="数量";
document.getElementById("TextBox3").value="总额";
}
</script>
</head>
<body onload="showText();">迅洞野
<form id="form1" runat="server">
<div>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<颤喊asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox>
</div>
</form>
<亩喊/body>
</html>
追问
非常感谢您!我是想在ASP.NET中使用javascript实现3个TextBox控件分别来显示单价,数量和总额,然后总额自动生成,那应该怎么实现呢?
追答
无标题页
function showText()
{
var danjia;
var shulinag;
var zonge;
document.getElementById("TextBox1").value="2";
document.getElementById("TextBox2").value="2";
danjia=document.getElementById("TextBox1").value;
shulinag=document.getElementById("TextBox2").value;
zonge=parseInt(danjia)*parseInt(shulinag);
document.getElementById("TextBox3").value=zonge.toString();
}
这样可以不可以呢。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询