Tag: html form post

无法从引导模式发布

在我的应用程序的标题,我有一个链接,点击打开引导popup窗口模式。 当我在文本框中插入数据并点击提交时,没有任何操作发生。 请指教。 谢谢。 这是我的模式的HTML: <!– Modal –> <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">Modal title</h4> </div> <form action="addCard" method="post" id="addcard" class="form-horizontal" role="form"> <div class="modal-body" style="height: 140px;"> <div class="form-group" style="height: 30px;"> <label for="title" class="col-md-3 control-label">Title</label> <div class="col-md-9"> <input type="text" class="form-control" name="title" […]

Node.js – 如何从html发送数据来expression

这是html中的表单示例: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>CSS3 Contact Form</title> </head> <body> <div id="contact"> <h1>Send an email</h1> <form action="/myaction" method="post"> <fieldset> <label for="name">Name:</label> <input type="text" id="name" name="name" placeholder="Enter your full name" /> <label for="email">Email:</label> <input type="email" id="email" placeholder="Enter your email address" /> <label for="message">Message:</label> <textarea id="message" placeholder="What's on your mind?"></textarea> <input type="submit" value="Send message" […]