在ajax-form提交后重新加载jquery

时间:2013-05-25 06:18:36

标签: jquery ajax

我在我的网页上有这个工作jquery

(function ($) {
$(document).ready(function(){
    if (!$('.normal').length) {
    $('#special').addClass("yellowstone");  }
});
}(jQuery));

在提交表单时加载选择器“normal”,但表单使用ajax,因为整个页面不会重新加载 - >我的脚本没有更改类。

如何在表单提交后更改类正在更改?

2 个答案:

答案 0 :(得分:0)

$.ajax({
url:"yoururl",
type:"post",
dataType:"json",
success:function(){
//Do changing the class here
}
});

答案 1 :(得分:0)

尝试ajax表单提交成功

$.ajax({
  -----//Own stuff   
  success:function(){
       if (!$('.normal').length) {
          $('#special').addClass("yellowstone");  
       }
   }
 });