在我的代碼中,我試圖在我的DIV
中使用或<script>
標籤,當用戶點擊DIV
時,它會自動刪除包含廣告的DIV
。我的代碼100%正常工作時,我加載的圖像在DIV
,但當我把或<script>
標籤加載廣告內容時,它不會刪除div。我不知道爲什麼?是否有任何功能可以自動檢測點擊DIV
函數並刪除它?Jquery close div點擊
這裏是現場工作示例https://jsfiddle.net/infohassan/uvzjj9h4/2/
這裏是我的HTML
$(document).ready(function() {
$('.custom_closebtn').click(function() {
$('.custom_ads_placement').remove();
});
});
$(document).ready(function() {
$('.custom_adContent').click(function(e) {
$('.custom_ads_placement').remove();
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="custom_ads_placement" style="z-index:10000;">
<div class="custom_closebtn">Close Ad</div>
<div class="custom_adContent" style="z-index:12000;">
<iframe src="http://exampledomain.com/ad.php" width="330" height="400" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" >Your Browser Do not Support Iframe</iframe>
</div>
</div>
你不想刪除它的代碼或只是隱藏它? –
可以發佈一些html –
@MehdiBouzidi刪除或隱藏並不重要 – Rtra