http://investinlisbon.ml/
因此,我将我的小表格放在页面顶部(按钮叫我回来!),但是我的提交按钮(发送)停止工作

我猜我的功能可能覆盖了我的表格?

JS

$('#cmb-button').toggle(function() {
//this will happen when your mouse moves over the object
$('#cmb-button2').css({
"display": "none"
});
$('#cmb-button3').css({
"display": "inline"
});

}, function() {
//this is what will happen when you take your mouse off the object
$('#1101').css({});
});


的PHP

<div id="cmb-button" class="cmb">

<div id="cmb-button2">

<button type="button" id="buttoncontact">
  Call me back!
</button>

</div>

<div id="cmb-button3">
<?php
 echo do_shortcode( '[contact-form-7        id="1101" title="Call Back PT"]' );
                            ?>
</div>
</div>

最佳答案

导致代码中断的问题是,自jQuery v1.8起已弃用.toggle()的用法,自v1.9起正式将其删除。如果您使用的是jQuery的较新版本,则可能会遇到困难。

不推荐使用:http://api.jquery.com/toggle-event/

新:http://api.jquery.com/toggle/

08-19 03:26