gpt4 book ai didi

php - 隐藏 div 内的表单在发布时没有值

转载 作者:行者123 更新时间:2023-12-02 20:40:16 25 4
gpt4 key购买 nike

我有一个 html 表单,在提交时会发布到新页面。如果需要,用户可以单击按钮以使小表格在 div 框中可见。这会向我的表单添加更多文本输入字段。

问题是,无论 div 框是隐藏还是可见,在发布表单时都不会发送任何附加字段数据。

div框代码

      function quotevisi()
{
document.getElementById("quote").style.visibility = "visible";
tdat = "" ;
tdat += "<h2 align='center' >Client Quotation </h2>" ;

tdat += "<table align='center'cellpadding='1' width='690px'><tr>"
tdat += "<td ></td><td>Additional 1</td>" ;
tdat += "<td ><label><textarea id='line1' cols='50' rows='1'>"
tdat += "</textarea></label></td></tr>"

tdat += "<td ></td><td >Additional 2 </td>" ;
tdat += "<td ><label><textarea id='line2' name='line2' cols='50' rows='1'>"
tdat += "</textarea></label></td></tr>"

tdat += "<td ></td><td >Additional 3 </td>" ;
tdat += "<td ><label><textarea id='line3' name='line3' cols='50' rows='1'>"
tdat += "</textarea></label></td></tr>"

tdat += "<td ></td><td >Special Instructions</td>" ;
tdat += "<td ><label><textarea id='special' name='special' cols='50' rows='1'>"
tdat += "</textarea></label></td></tr>"

tdat += "<td ></td><td ></td> <td>" ;
tdat += "<input type='button' value='View Quote' onclick='view_quote()' /> "

tdat += "<input type='button' value='Close' onclick='closequote()' /> "

tdat += "<td ></td> " ;

tdat += "</table> "

// display in the quote div (style sheet)
document.getElementById('quote').innerHTML= tdat
}

表单有点大,但是隐藏字段的按钮是这个

<td ><input class="buttn" type="button" value="Extra Quote details "   onclick="quotevisi();" /> </td> 

我认为所有这些信息都会与post表单一起出现。但事实并非如此。哦最后div框代码放在了这一行后面

<form  style='background-color:ccc' id='form1' name='form1' method='post' action='process.php' > 

任何帮助或想法将不胜感激

谢谢米克

最佳答案

我不得不猜测该表单不包含“quote”元素,但真正有用的是更完整的 HTML 片段。

关于php - 隐藏 div 内的表单在发布时没有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2533523/

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