我正在创建一个Node.js应用程序,并使用jQuery数据表。我希望我的表字段是可编辑的,因此也使用了相同的Jeditable。$('td').editable('/ajax_url'); //These elements are not in source but rendered on page在这里,我的表是使用数据表服务器端处理动态生成的/div>
我从node.js服务器获取了一些数据,这些数据会影响我的一些元素的类。$.get('/example', function (data)//changes element 1 to .newclass from .oldclass不幸的是,get请求外部的事件处理程序无法识别更新后的类$('.oldclass').click(function ()//aff