2012-08-30 32 views
0

我试图打造为ZetaBoards论坛软件反馈的脚本,我创建了一个$。员额功能,当我尝试点击提交表单提交按钮,它只在Firebug中返回'TypeError:e.type不是函数'。

这里是我的代码:

<script type="text/javascript"> 
    var forumID = '1701794'; 

    if (location.href.indexOf('/profile/') !== -1) { 
     $('table.profile:last').after('<form id="feedback_form"><table class="profile" id="feedback"><thead><tr><th colspan="4">Feedback</th></tr></thead><tbody><tr><th colspan="4">Overall Rating: # (Positive: #, Neutral: #, Negative: #)</th></tr><tr><td colspan="4">Submit feedback: <input type="text" name="comment" size="100" /> <input type="radio" name="feed_rate" value="3">0 <input type="radio" name="feed_rate" value="1">1 <input type="radio" name="feed_rate" value="2">2 <button type="button">Submit</button></td></tr><tr><th>Rating</th><th>Comment</th><th>From</th><th>Date</th></tr></tbody></table></form>'); 

     var profileID = window.location.href.split('profile/')[1].split('/')[0]; 

     $.get(main_url + 'forum/' + forumID + '/', function (data) { 
      $('table.posts:not(#announcement_list) tr[class*="row"]', data).each(function() { 
       var userID = $(this).find('td.c_cat-title a').text().split('~')[0]; 
       var rating = $(this).find('td.c_cat-title a').text().split('~')[1]; 
       var comment = $(this).find('div.description').text(); 
       var userHref = $(this).find('td.c_cat-starter a').attr('href'); 
       var userText = $(this).find('td.c_cat-starter a').text(); 
       var date = $(this).find('div.t_lastpostdate').text(); 

       if (profileID === userID) $('#feedback tbody').append('<tr><td>' + rating + '</td><td>' + comment + '</td><td><a href="' + userHref + '">' + userText + '</a></td><td>' + date + '</td></tr>'); 
      }); 
     }); 

     $('#feedback button').click(function() { 
      var userID = window.location.href.split('profile/')[1].split('/')[0]; 
      var description = $('input[name="comment"]').val(); 
      var rating = $('input[name="feed_rate"]:checked').val(); 
      var title = userID + '~' + rating; 

      $.get(main_url + 'post/?type=1&mode=1&f=' + forumID, function (data) { 
       var ast = $('input[name="ast"]', data).val(); 
       var xc = $('input[name="xc"]', data).val(); 

       $.post(main_url + 'post/', $.extend({ 
        mode: 1, 
        type: 1, 
        ast: ast, 
        f: forumID, 
        xc: xc, 
        sd: 1, 
        title: title, 
        description: description, 
        post: description + '~' + title 
       })); 
      }); 
     }); 
    } 
</script> 

以下是我正在使用它,其中:http://s1.zetaboards.com/Cory/profile/62973/

登录与测试帐号:

用户名:测试

密码:Test1的

+0

确定用户名和密码不是小写吗?你真的希望人们登录到你的网站,并在论坛脚本中找到错误吗? – adeneo

+0

$ .post中的'type'参数,为什么需要在$ .extend()中? – timidboy

+0

我在上面发布的用户名和密码是正确的,测试帐户是这样人们可以提交表单并为他们自己查看错误。 – Cory

回答

1

您正在覆盖funct中构建的jQuery离子$.type的值为1. $ .post调用中的$.extend({})的用途是什么?这是导致错误的原因。

这种替换:

$.post(main_url + 'post/', { 
     mode: 1, 
     type: 1, 
     ast: ast, 
     f: forumID, 
     xc: xc, 
     sd: 1, 
     title: title, 
     description: description, 
     post: description + '~' + title 
}); 

调用$.extend()没有第二个参数将覆盖jQuery对象的默认属性。

+0

+1 - 我发现了同样的事情。肯定是一个严重的问题。 – jfriend00

+0

工程就像一个魅力,非常感谢你! – Cory

相关问题