0
私の変数に問題があります。文法に関連しているかどうかは分かりませんが、何らかの理由で私の変数であるif
文の最初の部分がうまくいきません。変数がSPServicesと連携していません
私はSPServices
なしでテストしましたが、私はちょうどSPServices
なしでその機能を実行すれば動作します。私もSPServices
をアラートでテストしましたが、変数ではありません。以下のコードをご覧ください。ありがとう!
$(document).ready(function(){
var dropdown = $("select[title='Item-Status']");
$().SPServices({
operation: "GetGroupCollectionFromUser",
userLoginName: $().SPServices.SPGetCurrentUser(),
async: false,
completefunc: function(xData, Status) {
if ($(xData.responseXML).find("Group[Name='CCB Team']").length == 0) {
dropdown.find("option[value='QA Review']").remove();
} else if ($(xData.responseXML).find("Group[Name='QA Team']").length == 1) {
alert("You should see this");
}
}
});
});