我有
@foreach ($translation as $locale)
<div class="form-group">
<label><strong>Locale</strong></label>
<textarea type="text" class="form-control form-control-sm" id="locale" name="locale" rows="1" disabled>{{$locale->locale}}</textarea>
</div>
<div class="form-group">
<label><strong>Title</strong></label>
<textarea type="text" class="form-control form-control-sm" id="title" name="title" rows="1">{{$locale->title}}</textarea>
</div>
<div class="form-group">
<label><strong>Caption</strong></label>
<textarea type="text" class="form-control form-control-sm" id="caption" name="caption" rows="1">{{$locale->caption}}</textarea>
</div>
@endforeach
那么如何删除Id&#34; <div id="myId">
<div>aa</div>
<h3>hellow</h3>
<a href="#"></a>
</div>
&#34;的所有内容?使用jQuery?
结果必须是:
myId
答案 0 :(得分:0)
描述:从DOM中删除匹配元素集的所有子节点。
$("#myId").empty()
console.log($("#myId").get(0).outerHTML)
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="myId"><div>aa</div><h3>hellow</h3><a href="#"></a></div>
&#13;
答案 1 :(得分:0)
您可以使用不同的方式:
// ref: https://api.jquery.com/empty/
$("#myId").empty()
// ref: https://api.jquery.com/html/
$("#myId").html('')
答案 2 :(得分:0)
你可以使用remove()方法。 .empty()
$( "#myId" ).empty()
答案 3 :(得分:0)