gpt4 book ai didi

javascript - 单击提交按钮并将数据插入 php 中的数据库表时如何显示隐藏表?

转载 作者:行者123 更新时间:2023-11-30 21:57:52 25 4
gpt4 key购买 nike

我有一个,通过它我输入项目名称和工作表名称,它们将保存在项目表中。基于此,我在另一个表“数据”上插入空值。我正在使用可编辑表来更新数据库中的这些空值。我想隐藏此表,直到提交项目名称和工作表名称,一旦提交值,则只显示表格。我已经尝试了很多,但在单击提交按钮后,我的表格会显示,直到页面重新加载并在加载完成时消失。我的代码部分如下。

    <script>
$(function(){
$('button#showit').on('click',function(){
$('#myform').show();
});
});
</script>
<form class="form-horizontal" action="db.php" id="#form1"
onSubmit="function();" method="post">

<input type="text" class="form-control1" name="projectname"
id="projectname" required >
<input type="text" class="form-control1" name="sheetname" id="sheetname"
required >
<button type="submit" name="submit" id="button" class="btn-
success btn" >Submit</button>
</form>
<div class="tab-content" id="myform" style="display:none">
<div class="tab-pane active" id="horizontal-form">
<?php

$s4 = "SELECT * FROM data ORDER BY data_id DESC LIMIT 1";
$res = mysqli_query($bd, $s4);
while ($row = mysqli_fetch_array($res))
{
?>
<table class="table table-bordered" style="width:50%;">
<thead>
<tr>
<th>Sr.no</th>
<th>Column Name</th>

</tr>
</thead>
<tbody>

<tr class="odd">
<td>1</td>
<td id="d1:<?php echo $row['data_id']; ?>" contenteditable="true"><?php
echo $row['d1']; ?></td>
</tr>

.
.
.
</tbody>
</table>
<?php } ?>
</div>
</div>
on db.php I have used to get back on my previous page
<script>
alert('Sheet Created Successfully');
window.location.href='index.php?success';

</script>

最佳答案

<!-- Example of jQuery Reference -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

<!-- Your Hiding Script -->
<script type='text/javascript'>
$(document).ready(function(){
$("#AddNewRecord").hide();
});
</script>

<!-- Your Markup -->
<table border="1" cellpadding="2" id="AddNewRecord">
<tr style="width:25px;">
<td>Site</td>
</tr>
</table>

关于javascript - 单击提交按钮并将数据插入 php 中的数据库表时如何显示隐藏表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44450778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com