?
在IE6中,submit事件,失效;在Firefox中正常使用
?
解决办法:
?
表单提交采用<intput type="button"> 而不是<intput type="submit">
?
对Button绑定事件处理:
?
discussAction.click( function () {
??? ??? ??? ??? if(check()){
??? ??? ??? ??? ??? saveDiscuss();
??? ??? ??? ??? }
??? ??? ??? ? ??? return false;
??? ??? ??? });