タグ間</form>
および</body>
クリック時にすべてのテキストをクリアする必要があります。
IDのないテキストが表示されます。
</form>
text text text
</body>
タグ間</form>
および</body>
クリック時にすべてのテキストをクリアする必要があります。
IDのないテキストが表示されます。
</form>
text text text
</body>
var pa=document.body;
while(pa.lastChild.tagName!="FORM"){
pa.removeChild(pa.lastChild);
}
これを試して:
</form>
<span id="mySpan" onclick="document.getElementById('mySpan').innerHTML = '';">text text text</span>
</body>
外側の要素のhtmlを内側の要素のhtmlに置き換えます。
<div id="div1">
Outer
<div id="div2">Inner</div>
Outer
</div>
<div onclick="replace()">Clear</div>
<script type="text/javascript">
function replace()
{
$("#div1").html( $("#div2").html() )
}
</script>