我在使div可見並隱藏時遇到問題。 以下是我設計..延遲顯示並隱藏包含gif圖像的div
<div class="sidebar_contents_container inactive_step" id="step-trip-mode">
<div id="Progressbar" style="position:fixed;width:100%;height:100%;z-index:999;background: rgba(0,0,0,0);display:none;">
<div style="background-image:url('../images/progress_bar.gif');width:8%;height:17%;top:50%;left:50%;position:fixed;"></div>
</div>
<div class="settings_container">
<div class="header">Register Your Device Id</div>
<div class="intro-content">
<div class="intro-content-middle">
<span class="title" style="text-align: center;padding-right: 155px ">Device Id <font color="red">*</font>:</span>
<div style="margin: 2px;">
<!--<font size="4">Device Id : </font><font size="3" color="red">*</font></br>-->
<input id="device_Id" type='text' class="txtbox" placeholder="Device Id"style="width:250px;height: 40px;"/disabled>
<div style="color:red;visibility: hidden;">Device</div>
</div>
<span class="title" style="text-align: center;padding-right:140px;">Device Sim<font color="red">*</font>: </span>
<div style="margin: 2px;">
<input id="device_sim_number" type='text' class="txtbox" placeholder="Device Sim"style="width:250px;height: 40px;" maxlength="15"/>
<div style="color:red; visibility: hidden;" id="device_sim_number1">Field can not be Blank.</div>
</div>
<span class="title" style="text-align: center;padding-right:140px;">First Name <font color="red">*</font>: </span>
<div style="margin: 2px;">
<input id="txtFName" type='text' class="txtbox" placeholder="First Name" style="width:250px;height: 40px;" maxlength="100"/>
<div style="color:red;visibility: hidden;" id="txtFName1">Field can not be Blank.</div>
</div>
<div style="/* margin: 30px; */position: absolute;width: 98%;bottom: 35px;">
</div>
</div>
</div>
<div style="/* margin: 30px; */position: absolute;width: 98%;bottom: 35px;">
<button id="SaveDeviceData" type="submit" class="btn-active" onclick="Checkvalidation2()" >Register</button>
</div>
</div>
請只用設計的角度來看,我不說也罷整個代碼考慮這些。
關鍵是注意這裏是我創建了div,其中包含我的GIF內部div,我想使它可見和隱藏使用jQuery。
我做了什麼來控制能見度使用jQuery。
function Checkvalidation2(){
$("#Progressbar").css('display','block');
save();
}
function save(){
testing();
}
function testing(){
$("#Progressbar").css('display','none');
}
通過使用上述代碼到目前爲止我所面臨的是gif不顯示。如果我只使用$("#Progressbar").css('display','block');
並且不顯示'none',則會在10秒或更長時間後加載。
但是,我在我的網頁上找到了這個元素。
不解決你的問題,但更好地顯示()和隱藏()更有效率 –
^https://www.w3schools.com/jquery/jquery_hide_show.asp – LordMarty
顯示gif而做什麼?點擊註冊按鈕? – ZombieChowder