Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何在一个预览页面中保存多个表单输出(表单位于不同的页面上,biut在一个iframe中显示)_Javascript_Jquery_Html_Forms_Iframe - Fatal编程技术网

Javascript 如何在一个预览页面中保存多个表单输出(表单位于不同的页面上,biut在一个iframe中显示)

Javascript 如何在一个预览页面中保存多个表单输出(表单位于不同的页面上,biut在一个iframe中显示),javascript,jquery,html,forms,iframe,Javascript,Jquery,Html,Forms,Iframe,我有两个单独的表单显示在一个iframe中,我希望用户在输入中输入数据,单击next按钮,然后输入表单2的输入,单击review按钮,然后在将数据提交到数据库之前在一个预览页面中显示表单1和表单2的输出。我尝试过会话存储,但我知道我的代码是错误的 var formValues = []; SessionStorage.setItem("fname", "fname"); SessionStorage.setItem("lname", "lname"); SessionStorage.setIte

我有两个单独的表单显示在一个iframe中,我希望用户在输入中输入数据,单击next按钮,然后输入表单2的输入,单击review按钮,然后在将数据提交到数据库之前在一个预览页面中显示表单1和表单2的输出。我尝试过会话存储,但我知道我的代码是错误的

var formValues = [];
SessionStorage.setItem("fname", "fname");
SessionStorage.setItem("lname", "lname");
SessionStorage.setItem("phone-field", "phone-field");
SessionStorage.setItem("email-field", "email-field");

$(document).ready(function() {
  $(".next").click(fuction() {
    $("#fname").val("fname");
    $("#lname").val("lname");
    $("#phone-field").val("phone-field");
    $("#email-field").val("email-field");


var formValues = sessionStorage.getItem("fname");
console.log(formValues);

$(document).ready(function() {

                $('.next').click(function() {
                  var formValues = [];
                  // get values from inputs in first fieldset
                  $('.field1 :input').each(function() {
                    formValues.push($(this).val());
                  });

                  formValues.pop(); //remove the button from input values
                  console.log(formValues);

                // set values in second fieldset
                  $('.field3 :input').each(function(index) {
                    if (formValues[index]) {
                      $(this).val(formValues[index]);
                    }
                  });

                  $('.current').removeClass('current').hide().next().show().addClass('current');

                });

                $('.previous').click(function() {
                  $('.current').removeClass('current').hide().prev().show().addClass('current');

                });
              });   

                   $(document).ready(function() {

                $('.review').click(function() {
                  var formValues = [];
                  // get values from inputs in first fieldset
                  $('.field2 :input').each(function() {
                    formValues.push($(this).val());
                  });

                  formValues.pop(); //remove the button from input values
                  console.log(formValues);

                  // set values in second fieldset
                  $('.field3 :input').each(function(index) {
                    if (formValues[index]) {
                      $(this).val(formValues[index]);
                    }
                  });

                  $('.current').removeClass('current').hide().next().show().addClass('current');

                });

                $('.previous').click(function() {
                  $('.current').removeClass('current').hide().prev().show().addClass('current');

                });
              });   
<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
表格一

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

形式

名字:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
姓氏:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
电话:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
电邮:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

名字:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
姓氏:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
请求类型:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
简要说明:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
补充意见:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
表格二

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
<!DOCTYPE html>
<html>

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field2 current">
      <h2>Form 2</h2>
      <label for="classify">Type of Request:</label>
      <select name="classify" id="classify">
        <option value="">Please select an option..</option>
        <option value="maintainence">Maintainence of Site</option>
        <option value="troubleshoot">Troubleshoot/Error</option>
        <option value="new">Create new content</option>
      </select>
      <p></p>
      <p>
        <label for="subject">Short Description: <span class="counter-field">
              <span id="counter"></span> characters left.</span>
        </label>
        <input name="subject" id="subject" placeholder="Subject" type="text" />
      </p>
      <p>
        <label for="desc">Additional Comments:</label>
        <textarea style="font-family: Arial, Veranda, Sans serif" name="desc" id="desc" cols="30" rows="10" placeholder="Short Description"></textarea>
      </p>
      <p>
        <label for="review">
          <input name="review" onclick="showData();" class="review action-button" value="Review" type="button" />
        </label>
      </p>
    </fieldset>
    <fieldset class="field3">
      <!-- @TODO PREVIEW ALL FORM INPUTS -->
      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Phone:
        <input class="show_phone" readonly="readonly" type="text" />
      </p>
      <p>E-mail:
        <input class="show_email" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

表格二
请求类型:
请选择一个选项。。
场地维护
故障排除/错误
创建新内容

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
简要说明: 剩下的字符。

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
补充意见:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
名字:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
姓氏:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
电话:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
电邮:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
请求类型:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
简要说明:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>
补充意见:

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

<head>
  <link data-require="bootstrap@4.0.5" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script data-require="bootstrap@4.0.5" data-semver="4.0.5" src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js"></script>
  <script data-require="jquery@3.1.1" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link rel="stylesheet" href="style.css" />
  <script src="script.js"></script>
</head>

<body>
  <form id="helpdeskform" action="process.php" method="post">
    <fieldset class="field1 current">
      <h2>Form</h2>
      <p>
        <label class="form-label first-name" for="fname">First Name:</label>
        <input name="fname" id="fname" placeholder="First Name" type="text" />
      </p>
      <p>
        <label class="form-label last-name" for="lname">Last Name:</label>
        <input name="lname" id="lname" placeholder="Last Name" type="text" />
      </p>
      <p>
        <label class="form-label" for="phone-field">Phone:</label>
        <input name="phone" id="phone-field" placeholder="Phone Number" type="text" />
      </p>
      <p>
        <label class="form-label" for="email-field">E-mail:</label>
        <input name="email" id="email-field" placeholder="E-mail" type="text" />
      </p>
      <hr />
      <label for="review">
        <input onclick="location.href='index3.html'" id="next" name="next" class="next action-button" value="Next" type="button" />
      </label>
    </fieldset>
    <fieldset class="field3">

      <p>First Name:
        <input class="show_fname" readonly="readonly" type="text" />
      </p>
      <p>Last Name:
        <input class="show_lname" readonly="readonly" type="text" />
      </p>
      <p>Type of Request:
        <input class="show_type_of_request" readonly="readonly" type="text" />
      </p>
      <p>Short Description:
        <input class="show_subject" readonly="readonly" type="text" />
      </p>
      <p>Additional Comments:
        <input class="show_comments" readonly="readonly" type="text" />
      </p>
      <p style="float:left;">
        <label for="previous">
          <input name="previous" class="previous action-button" value="Previous" type="button" />
        </label>
      </p>
      <p style="float:left; padding-left: 10px;">
        <label for="Submit">
          <input value="Submit" name="submit" class="action-button" type="submit" />
        </label>
      </p>
    </fieldset>
  </form>
</body>

</html>

你能详细说明你的代码是如何“不起作用”的吗?你在期待什么,到底发生了什么?如果您遇到异常/错误,请发布发生该异常/错误的行以及异常/错误详细信息。请输入这些详细信息,否则我们可能无法提供帮助。预览页面上仅显示表格2的值。我只发布了表单1代码,您想要表单2代码吗?我想要表单1和表单2显示在预览页面中,但预览页面上只显示表单2值我不想要任何东西。Stackoverflow建议您发布一篇文章。