文章列表
document.getElementById("aa").Aspect.around(item, "onclick", checkLoading);
// 防止重复提交aaa
var checkLoading = function (invocation) {
alert(3);
if (isDocumentLoading()) {
//alert("now loading…");
return false;
}
return invocation.pr ...