开发者

jQuery Form Problem

开发者 https://www.devze.com 2023-01-22 19:33 出处:网络
I have developed a form using jQuery, HTML and a C# and ASPX back-end. It works fine on Firefox and other W开发者_StackOverflow中文版eb browsers but if fails on Internet Explorer and don\'t know why.

I have developed a form using jQuery, HTML and a C# and ASPX back-end.

It works fine on Firefox and other W开发者_StackOverflow中文版eb browsers but if fails on Internet Explorer and don't know why.

I have tryied everything.

The URL is Web Form

Any ideas??

Thanks!!


The button is an input type="button". Perhaps it should be input type="submit"? Don't know if IE has problems with type=button


This may not be the entire problem, but I don't think you should use a body onload method. Use the built in jQuery option that is more cross browser:

$(document).ready(function() {
    // onload logic here
});
0

精彩评论

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