現在、11年目のメディアコースワークの一環としてウェブサイトを構築していますが、このIf ...Else...機能を機能させることができないようです。これが私のコーディングです。
if(ifr.contentDocument.getElementById("ctl00_ctl00_cphBanner_MenuRedesign_BannerAlertsAndOptionsLoginView_BannerAlertsAndOptions_Authenticated_MessagesTextWrapper") != null){
notify("Personalising site...")
document.getElementById("loginButton").innerHTML = "Account Connected!";
document.getElementById("loginButton").onclick=function(){window.location.href="//roblox.com/--place?id=91276386";}
notify("Account connected successfully");
hideWheel();
}else{
notify("Could not connect account");
hideWheel();
};
「if(...){...}else{...};」を削除しました コードから、それが機能していることがわかったので、障害は「if(...)」自体にあると確信しています。
それが役立つ場合、ifrは実際にdocument.createElement( "iframe");を使用して作成されました。iFrameには「src」があり、コンテンツが表示されたページに表示されます。
どんな助けでも大歓迎です。ありがとう。