gpt4 book ai didi

mysql - 从传单弹出窗口提交表单 Mysql

转载 作者:行者123 更新时间:2023-11-29 21:58:20 26 4
gpt4 key购买 nike

我想从传单弹出窗口提交表单以修改 mysql 数据库中的数据。

lyrClients.eachLayer(function(e){ 

if(e.feature.properties.IdClient==IdClient){
e.bindPopup("<form method='post' action='ajax/filldbclient.php'>First name:<br><input type='text' name='firstname' value='Your first name' ><br>Last name:<br><input type='text' name='RaisonSociale' value='Your last name'></form><input class='click' type='submit' name='submit' value='Sent'>" );
e.openPopup();
}



});

这不起作用,因为正如所解释的 here点击事件似乎在弹出窗口中被禁用。但我没有找到让它发挥作用的方法..(我的意思是提交)提前感谢您的帮助。

最佳答案

您的输入按钮元素需要位于表单元素内:

更改:

</form><input class='click' type='submit' name='submit' value='Sent'>

致:

<input class='click' type='submit' name='submit' value='Sent'></form>

关于mysql - 从传单弹出窗口提交表单 Mysql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32906729/

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