1

我正在尝试使用接受多个值的 css 的弹出窗口。例如,当我单击特定链接时,会出现一个带有多个输入框的新窗口。我的问题是如何将接受的值存储在数据库中?

我使用 php 作为服务器端脚本语言。一个简单的例子来说明这个概念将不胜感激。

 <html>
 <head>
 </head>

 <style>
 #overlay {
 visibility: hidden;
 position: absolute;
 left: 0px;
 top: 0px;
 width:100%;
 height:100%;
 text-align:center;

 }


 #overlay div {
 width:300px;
 margin: 100px auto;
 background-color: #fff;
 border:1px solid #000;
 padding:15px;
 text-align:center;
  }

</style>


 <div id="overlay">
 <div>
    <p><input type="text" id=txt name=txt /></p>
  <input type="submit" onclick="add()" />[<a href='#' onclick='overlay()'>close</a>]
 </div>
 </div>
 <a href='#' onclick='overlay()'>clck here</a>
 <script>

 function add()
 {
   alert(document.getElementById("txt").value)  

 }


  function overlay() {
el = document.getElementById("overlay");
el.style.visibility = (el.style.visibility == "visible") ? "hidden" : "visible";
 }
</script>

 <body>
 </body>
 </html>
4

0 回答 0