在同一页面上的另一个表中显示提交的表结果

时间:2018-10-18 02:51:58

标签: javascript forms html-table

正在寻找一个表格问题的解决方案,该表格没有使用.innerhtml直接以文本形式在下方书写,也不弹出,jQuery,PHP也不使用表单类型以收集数据。首选document.write,而不是<div>标签等替代方法。

<body>
    <table id="resultTable" border="1">
      <tr>
        <th>
        Full Name:
        </th>
        <td>
            <input type="text" name="FullName2" id="fname2" readonly>
     Member ID:
        </th>
        <td>
            <input type="text" name="MemberID" id="mid1">
</table>
</body>

按钮

<button id="push" onclick="acceptInput()">Submit</button>

处理方法的遵循

function acceptInput()
{
    fullname=document.getElementById('fname').value;
     mid=document.getElementById('mid1').value;
}

第二张桌子

  <table id="resultTable" border="1">
      <tr>
        <th>
        Full Name:
        </th>
        <td>
            <input type="text" name="FullName2" id="fname2" readonly>
        </td>
        </tr>
        <th>
        Member ID:
        </th>
        <td>
            <input type="text" name="MemberID2" id="mid2">
}

来自表的输入收集需要在同一页面上单击事件时将其输出为表。如何将现有的第二张表转换为仅在 单击同一页上的提交按钮后通过将替换为第一张表作为原始Javascript / html出现在上?

0 个答案:

没有答案