我有一个网站,计算每个服务器的性能。其中一个要求是关于性能的中心部分页面必须先完成加载,然后再在后台执行另一个功能。
这个居中的部分页面使用ajax调用。它们在js文件的document.ready中定义:
$(document).ready(function () {
// ajax call here
// another ajax call here
// third ajax call here
});
然后,在文档中的函数就绪后,我想要执行的函数:
function functionA() {
// some codes here
});
我试着使用这个:
$.when(docume
我的projects索引页面上有一个下拉列表,它使ajax调用索引操作:
def index
@projects = sorted_projects # sort projects on basis of dropdown selection
respond_to do |format|
format.html
format.js { render 'populate_projects' }
end
end
我的populate_projects.js.haml文件是:
:plain
$("#sorted
我已经使用mislav-will_paginate实现了ajax分页,js可以在这里找到:,但是我遇到了一个我不确定如何处理的情况。我有许多组(属于相同的模型),每个组都有一些分页的列表。我不知道在ajax分页调用中为哪个组加载列表。这是我使用的代码:
function ajaxPagination(){
var container = $(document.body)
if (container) {
container.observe('click', function(e) {
var el = e.element();
if (e