我的提交按钮不起作用

时间:2016-02-26 15:56:59

标签: javascript php jquery css

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>

1 个答案:

答案 0 :(得分:1)

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

已弃用http://api.jquery.com/toggle-event/

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