order.htm

来自「javascript source code part2」· HTM 代码 · 共 37 行

HTM
37
字号
<!--order.htm-->
<HTML><BODY>
Your order currently consists of:<BR>
<SCRIPT>
var i;
var linetotal = 0, subtotal = 0;

for ( i in top.cart)
{
  document.write(' Item: '+top.cart[i].name);
  document.write(', '+top.cart[i].quantity+' at '+top.cart[i].price);
  linetotal = top.cart[i].quantity * top.cart[i].price;
  document.write(' each is: '+ linetotal + '<BR>');
  subtotal += linetotal;
}
document.write('<BR>Total due is: '+subtotal+'<BR>');
</SCRIPT>
<FORM METHOD="POST"> <! add an ACTION for your server-side program>
<SCRIPT>
var item;
for (i in top.cart)
{
  item = '<INPUT TYPE="hidden"' +
         ' NAME="' + i + '"' +
         ' VALUE="' + top.cart[i].quantity + '">';
  document.write(item);
}
</SCRIPT>
<BR>
Credit Card details (you won't feel a thing) 
<INPUT TYPE="text" NAME="card_number">
<INPUT TYPE="submit" VALUE="Buy Now">
</FORM>
</BODY></HTML>


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?