これはJSドキュメント準備使用上のクラスを削除するには:
jQuery(document).ready(function() {
$("#commonConsultationPopup").removeClass("overlayPopup");
});
を代わりにこのウィンドウ負荷用途に要素からクラスを削除するには:
:ここ
jQuery(window).load(function() {
$("#commonConsultationPopup").removeClass("overlayPopup");
});
は完全なコードです
<!DOCTYPE html>
<html>
<head>
<title>Remove class example</title>
<!-- We are using jQuery 3.1.0 -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<!-- You can also use jQuery 12.1.4 like this -->
<!-- <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.min.js"></script> -->
</head>
<body>
<div class="overlayPopup" id="commonConsultationPopup"></div>
<script type="text/javascript">
// Use this if you want to wait for the page to be ready:
jQuery(document).ready(function($) {
$("#commonConsultationPopup").removeClass("overlayPopup");
});
// Use this instead if you want to wait for the page to load:
// jQuery(window).load(function() {
// $("#commonConsultationPopup").removeClass("overlayPopup");
// });
</script>
</body>
</html>
幸運と最高です。
jQuery libがロードされていますか? –
はい、ロードされています。 – Abhay
コンソールにエラーがありますか? –