2015-12-01 64 views
-2

我想使用JQuery從HTML中刪除下面的div。使用JQuery去除div類

<div class="main-image content-fill" style="overflow: hidden;"> 
<img data-src="http://static1.squarespace.com/static/53a8e280e4b0222e1cd90549/53bb1263e4b053aeb1247ba7/5657e934e4b08c62b9d0afa6/1448853091831/" data-image="http://static1.squarespace.com/static/53a8e280e4b0222e1cd90549/53bb1263e4b053aeb1247ba7/5657e934e4b08c62b9d0afa6/1448853091831/" data-image-dimensions="600x338" data-image-focal-point="0.5,0.5" alt="How To Pick a Pumpkin and the History of Halloween " class="" src="http://static1.squarespace.com/static/53a8e280e4b0222e1cd90549/53bb1263e4b053aeb1247ba7/5657e934e4b08c62b9d0afa6/1448853091831/?format=2500w" data-image-resolution="2500w" style="top: -61px; left: 0px; width: 792px; height: 447px; position: relative;"> 
</div> 

我覺得這是非常相似,我已經提出here另一個問題,但我似乎不能成功地使其適應這種情況。

如果有人有任何見解,並可以幫助我,我將不勝感激。

注意「IMG數據-SRC,數據圖像,ALT和src改變不時這樣可能我想刪除的DIV類的所有實例

+0

要刪除文檔中的元素,['一個.remove()'](HTTP:// api.jquery.com/remove/)。 –

回答

2

使用此:

$(".main-image.content-fill").remove(); 

如果你只是想去掉從這個DIV的內容,你可以使用空方法:

$(".main-image.content-fill").empty();