使用
onevent属性。它必须指向一个回调函数引用(所以不要包括括号!):
<f:ajax ... onevent="functionName" />
实际的回调函数如下所示(JSF会自己提供参数):
function functionName(data) { var status = data.status; // Can be "begin", "complete" or "success". var source = data.source; // The parent HTML DOM element. switch (status) { case "begin": // Before the ajax request is sent. // ... break; case "complete": // After the ajax response is arrived. // ... break; case "success": // After update of HTML DOM based on ajax response. // ... break; }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)