js を使用して、Sharepoint で 1 つのリストを取得します。コードは以下のとおりです。
ExecuteOrDelayUntilScriptLoaded(getInnerHTML, "sp.js");
function getInnerHTML(){
var ctx = new SP.ClientContext.get_current();
this.site = ctx.get_site();
this.web = ctx.get_web();
ctx.load(this.web);
ctx.executeQueryAsync(Function.createDelegate(this, this.onSuccess), Function.createDelegate(this, this.onFail));
}
しかし、それは報告しました: getInnerHTML() は未定義です
何???頭の中で定義して宣言したのに、どうしよう!?!?!