1

我在这里有点便宜,并为我的业务窃取了一个网站模板,而不是从头开始制作一个。

但是我的问题是在联系表格上 - 我如何将其链接到我的电子邮件中?

<div id="contact_form">
            <h4>Send us a message now!</h4>
            <form method="post" name="contact" id="ok" action="#">

                <label for="author">Name:</label> <input type="text" id="author" name="author" class="required input_field" />
                <div class="cleaner_h10"></div>
                <label for="email">Email:</label> <input type="text" id="email" name="email" class="validate-email required input_field" />
                <div class="cleaner_h10"></div>

                <label for="phone">Phone:</label> <input type="text" name="phone" id="phone" class="input_field" />
                <div class="cleaner_h10"></div>

                <label for="text">Message:</label> <textarea id="text" name="text" rows="0" cols="0" class="required"></textarea>
                <div class="cleaner_h10"></div>

                <input type="submit" class="submit_btn float_l" name="submit" id="submit" value="Send" />
                <input type="reset" class="submit_btn float_r" name="reset" id="reset" value="Reset" />

            </form>
        </div>
    </div>

那是我的表格-我还需要在实际表格的背景中添加白色(全黑),这样您就看不到框了-我该怎么做?

为帮助欢呼

4

1 回答 1

-1

最基本的方法是将 设置action为您的电子邮件地址:

<form action="mailto:someone@example.com" method="post" enctype="text/plain">

http://webdesign.about.com/od/forms/a/aa072699mailto.htm

于 2012-12-17T00:50:48.997 回答