|
@@ -9,25 +9,55 @@
|
|
|
|
|
|
<div class="form animateTop">
|
|
|
<div class="input">
|
|
|
- <input type="text" placeholder="姓名">
|
|
|
+ <input type="text" placeholder="姓名" id="input_name">
|
|
|
</div>
|
|
|
<div class="input">
|
|
|
- <input type="text" placeholder="电话">
|
|
|
+ <input type="text" placeholder="电话" id="input_mobile">
|
|
|
</div>
|
|
|
<div class="input">
|
|
|
- <input type="text" placeholder="邮箱">
|
|
|
+ <input type="text" placeholder="邮箱" id="input_email">
|
|
|
</div>
|
|
|
<div class="input">
|
|
|
- <input type="text" placeholder="地址">
|
|
|
+ <input type="text" placeholder="地址" id="input_address">
|
|
|
</div>
|
|
|
<div class="input">
|
|
|
- <textarea name="" placeholder="留言内容"></textarea>
|
|
|
+ <textarea name="" placeholder="留言内容" id="input_content"></textarea>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="btn animateTop"><a>联系我们</a></div>
|
|
|
+ <div class="btn animateTop"><a id="submitForm">提交</a></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <script type="text/javascript">
|
|
|
+ $(document).ready(function(){
|
|
|
+ $("#submitForm").click(function(){
|
|
|
+ var name = $("#input_name").val();
|
|
|
+ var mobile = $("#input_mobile").val();
|
|
|
+ var email = $("#input_email").val();
|
|
|
+ var address = $("#input_address").val();
|
|
|
+ var content = $("#input_content").val();
|
|
|
+ $.post("https://admin.zfire.top/services/order/login/sendEmail", {
|
|
|
+ name,
|
|
|
+ mobile,
|
|
|
+ email,
|
|
|
+ address,
|
|
|
+ content,
|
|
|
+ },function(res){
|
|
|
+ if(res.code === 1) {
|
|
|
+ alert('提交成功');
|
|
|
+ $("#input_name").val('');
|
|
|
+ $("#input_mobile").val('');
|
|
|
+ $("#input_email").val('');
|
|
|
+ $("#input_address").val('');
|
|
|
+ $("#input_content").val('');
|
|
|
+ }else {
|
|
|
+ alert(res.msg);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ });
|
|
|
+ </script>
|
|
|
<!--banner 结束-->
|
|
|
|
|
|
<!--联系我们 开始-->
|