我想知道是否可以从 java json 对象调用函数?
例子
爪哇:
JSONObject json = new JSONObject();
json.put("fnRowCallback", "test()");
jQuery:
$ (function () {
"use strict";
function test() {
alert('test');
}
}(jQuery));
需要最终的成就。
JSONObject json = new JSONObject();
json.put("fnRowCallback", function( nRow, aData, iDisplayIndex, iDisplayIndexFull ) {
if (aData["rush"] == "Rush" ) {
$(nRow).addClass("gradeX");
}
});