开发者

Jquery CSS conflict in IE

开发者 https://www.devze.com 2023-04-11 01:12 出处:网络
<script type=\"text/javascript\"> $(document).ready(function(){ $(\"#myform\").validate({ debug: false,
<script type="text/javascript">
$(document).ready(function(){
    $("#myform").validate({
        debug: false,

        submitHandler: function(form) {
            // do other stuff for a valid form
            $.post('votenew.php', $("#myform").serialize(),      function(data) {
                $('#container').html(data);
            });
        }
    });
});
</script>

I have made a container that contains all of the divs. This code works perfectly in every ot开发者_如何转开发her browser except IE. In IE, the Div where the button is clicked, disappears. I can not seem to fix this problem. Any ideas?

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号