• JAVAEE:采用HTML和JavaScript实现几个基本的页面


    1.实现效果:

    1. <html>
    2. <title>学生信息确认title>
    3. <body>
    4. <Form>
    5. 用户名:<input type=text id="usename"><br>
    6. 密码: <input type=password id="userpwd"><br>
    7. 性别:<input type=radio id="sex" value="man">
    8. <input type=radio id="sex" value="woman"><br>
    9. 爱好:<input type=checkbox id="ai1" value="体育">体育
    10. <input type=checkbox id="ai2" value="音乐">音乐<br>
    11. 图片:<input type=file><br>
    12. <input type=submit value="提交"><input type=reset value="重填">
    13. Form>
    14. body>
    15. html>

    2.实现效果:

    1. <html>
    2. <head>
    3. <title>弗雷德网上购物中心title>
    4. <style>
    5. h1{
    6. font-weight: bold;
    7. font-size: 36px;
    8. text-align: center;
    9. }
    10. table {
    11. width: 100%;
    12. margin: 0 auto;
    13. }
    14. th,td {
    15. border: 1.5px solid black;
    16. padding: 11px;
    17. text-align: left;
    18. }
    19. h4{
    20. font-weight: normal;
    21. font-size: 20px;
    22. text-align: center;
    23. }
    24. input{
    25. margin-top: 15px;
    26. margin-bottom: 15px;
    27. }
    28. style>
    29. <h1>欢迎光临弗雷德网上购物中心h1>
    30. head>
    31. <body>
    32. <Form>
    33. 会员姓名:<input type=text id="vipname"><br>
    34. 会员卡号:<input type=text id="vipcard">
    35. <select id="viptype">
    36. <option value="normalvip">普通会员option>
    37. <option value="goldvip">黄金会员option>
    38. <option value="diamondvip">钻石会员option>
    39. select><br>
    40. 联系方式:<input type=text id="phone">
    41. 送货地址:<input type=text id="address">
    42. <h4>
    43. <text>选择您喜欢的商品text>
    44. h4>
    45. <table border="1" >
    46. <tr>
    47. <th>商品名称th>
    48. <th>单价th>
    49. <th>数量th>
    50. tr>
    51. <tr>
    52. <td>脑白金td>
    53. <td>¥100.00td>
    54. <th> th>
    55. tr>
    56. <tr>
    57. <td>富硒康td>
    58. <td>¥150.00td>
    59. <th> th>
    60. tr>
    61. <tr>
    62. <td>葡萄酒td>
    63. <td>¥70.00td>
    64. <th> th>
    65. tr>
    66. <tr>
    67. <td>美国山核桃td>
    68. <td>¥50.00/500gtd>
    69. <th> th>
    70. tr>
    71. table>
    72. 付款方式:<input type=radio id="payway" value="onlinebank">网银
    73. <input type=radio id="payway" value="zhifubao">支付宝
    74. <input type=radio id="payway" value="lend">贷款<br>
    75. <input type=submit value="提交订单"><input type=reset value="清空订单">
    76. Form>
    77. body>
    78. html>

    3.实现效果

    1. <html>
    2. <head>
    3. <title>水果订单title>
    4. <script>
    5. function calculate() {
    6. var applenum = parseInt(document.getElementById("applenum").value);
    7. var orangenum = parseInt(document.getElementById("orangenum").value);
    8. var applePrice = 2;
    9. var orangePrice = 1;
    10. var total = (applenum * applePrice) + (orangenum * orangePrice);
    11. var totall = total*1.05;
    12. document.getElementById("result").innerHTML = "总价:" + totall.toFixed(2) + "元";
    13. }
    14. script>
    15. head>
    16. <body>
    17. <h1>水果订单h1>
    18. <form>
    19. <label for="applenum">苹果数量:label>
    20. <input type="number" id="applenum" name="applenum" value="0"><br>
    21. <label for="orangenum">橘子数量:label>
    22. <input type="number" id="orangenum" name="orangenum" value="0"><br>
    23. <input type="button" value="提交" onclick="calculate()"><br>
    24. <div id="result">div>
    25. form>
    26. body>
    27. html>

  • 相关阅读:
    OpenCV + sklearnSVM 实现手写数字分割和识别
    SMU可以供电的同时测量电流和电压
    白话 Pulsar Bookkeeper 的存储模型
    今天面了个腾讯拿 38K 出来的,让我见识到了基础的天花板
    MySQL 8.0 Clone 备份恢复演练
    解决ubuntu开机变慢;删除耗时启动项
    catalog database 的配置
    java计算机毕业设计基于ssm的社区失物招领+房屋租赁+停车+宠物互助平台
    年薪高达50W的测开,到底是做什么的?
    SpringBoot整合kafka消费者注解详解
  • 原文地址:https://blog.csdn.net/m0_62102955/article/details/132920497