按钮发布 HTML
我需要使用按钮而不使用表单。如何让它将发布数据发送到浏览器?
我正在使用:
<button style="height: 100px; width: 300px" onClick="parent.location='form1.php'" >Fill survey</button>
I need to use a button without using a form. How do I make it send post data to the browser?
I am using:
<button style="height: 100px; width: 300px" onClick="parent.location='form1.php'" >Fill survey</button>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 JavaScript 创建一个表单,然后提交它。看一下这段代码
HTML
JavaScript 代码
You'll need to create a form in JavaScript, then submit it. Look at this code
The HTML
The JavaScript code