後は、私はdivのコンテンツを非表示にするには、これまで行っているコードです。しかし残念ながら、それはCRMオンラインでは働いていません。非表示のdivコンテンツ
function hideSocialEmailErrorMsgBlock() {
debugger;
var _errorMsgBlock = document.getElementById("emailnotification");
var _warningMessage = document.getElementById("warningmessage");
if ((errorMsgBlock == null && errorMsgBlock == undefined) || (warningMessage == null && warningMessage != undefined))
{
setTimeout(hideSocialEmailErrorMsgBlock, 1000);
return;
}
else
{
document.getElementById("emailnotification").innerHTML = '';
document.getElementById("warningmessage").innerHTML = '';
// code has to be placed here...
// $("#warningmessage").hide();
// $("warningmessage").attributes("style.display","none");
// $("emailnotification").attributes("style.display","none");
//$("#emailnotification").hide();
setTimeout(hideSocialEmailErrorMsgBlock, 1000);
}
}
フロントエンドのイメージです。ここで
ウェブページの画像です。
私は、Webページ上の表示エラーを非表示にする必要があります。あなたは完全にJavascript
であなたのemailnotification div要素を非表示にする場合
あなたは永久にそれを非表示にしたいですか? – Varun
はyesと答えることができますか? –
あなたはCSSでそれを隠すことができます。 '.emailnotification {display:none!important; } ' – Varun