CH 修改 Cookie 提示

hotfix/paypal-note
LiaoYijun 3 years ago
parent c1f48c1020
commit 0a1e5530a8

@ -328,7 +328,14 @@ Corporate Number: 914503003486045699
<img src="https://data.chinahighlights.com/pic/guide/info-template-bottom-logo.jpg" width="114" height="71" class="img-responsive bottomlogopc">
<span class="bottomcopyright">© 1998-2022 China Highlights — Discovery Your Way! </span>
</div></div>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>China Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p></div>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>China Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__china_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
@ -338,6 +345,15 @@ Corporate Number: 914503003486045699
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function() {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
<!--@PRODUCT-JS@-->

@ -328,7 +328,14 @@
</div>
</footer>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>China Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p></div>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>China Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__china_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
@ -338,6 +345,15 @@
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function() {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
<script>/* memu js https://data.chinahighlights.com/js/mobile-menu.js */

Loading…
Cancel
Save