当用户首次进入网站时会提示网站功能引导,提示用户操作。写入cookie浏览器缓存,下次不重复提示网站页面功能引导。
<div id="guide-step">
<div style="margin-top:270px;height:10px;line-height:99em;overflow:hidden;" id="stepflow03">第二步骤</div>
<div style="margin-top:530px;height:10px;line-height:99em;overflow:hidden;" id="stepflow04">第三步骤</div>
<div class="tipSwitch"></div>
</div>
<script type="text/javascript">
var tipVisible = GetCookie("tipVisible");
var neverShow = GetCookie("neverShow");
if(tipVisible != "no" && neverShow != "no"){
showSearchTip();
setSearchTip();
}
</script>