Javascript函数引用错误

时间:2015-12-04 19:04:48

标签: javascript jquery ruby-on-rails function referenceerror

我试图通过我的Rails应用程序上的命令按钮调用Javascript函数。

function fetchpurchases() {
  var startDate = $('#histStart').val();
  var endDate = $('#histEnd').val();
  $('#histMainFrame').empty();
  $.ajax({
    url: '/transHistory/confirm?start_date=' + startDate + '&end_date=' + endDate,
    type: 'get',
    beforeSend: function() {
      $('#mainContDiv').append('<img id=\'spinner\' src=\'/assets/spinner_green.gif\'>');
    },
    success: function(output) {
      $('#spinner').remove();
      $('#histMainFrame').html(output);
      $('#transPurTab').DataTable({
        destroy: true,
        lengthChange: false,
        pageLength: 50,
        paging: true,
        stripeClasses: ['oddStrip','evenStrip']
      });
    }
  });
}

使用调用Javascript函数的onclick事件定义一个按钮。

<div id="histToolbar">
  <div id="errorDiv"><p class="bigRedBright"></p></div>
  <table id="histTools">
    <tr>
      <th>Start Date</th>
      <th>End Date</th>
      <th></th>
    </tr>
    <tr>
        <td><input type="text" class="datepicker" id="histStart" placeholder="Start Date..."></td>
        <td><input type="text" class="datepicker" id="histEnd" placeholder="End Date..."></td>
        <td><button onclick="fetchHistory()" id="histSubmit">Submit</button></td>
        <td><button onclick="fetchpurchases()" id="deliverSubmit">Confirm Delivery</button></td>
    </tr>
  </table>
</div>

我可以通过手动输入浏览器来导航到我创建的页面。我编写的MySQL查询工作正常,但当我尝试使用按钮导航时,我得到reference error: fetchpurchases is not defined

另外(可能没有关联),当我尝试使用Firebug调试错误时,该函数不会显示在DOM窗口中。

1 个答案:

答案 0 :(得分:0)

我会这样做

// Create a namespace for your code
var App = App || {};

(function() {
  App.fetchpurchases = function() {
    //Your code here
  };
})();

如果您不想使用JS或jQuery将函数绑定到事件,则可以将HTML更改为:

<td><button onclick="App.fetchpurchases()" id="deliverSubmit" type="button">Confirm Delivery</button></td>

当然,无论你在哪里放置javascript都需要添加到application.js或手动加载到页面中。