function fn()
{
document.getElementById('obj').data = "";
}

<div style="background-color:blue">abc
<object id="obj" data="myImg.svg" type="image/svg" >
</object>
</div>
<div style="background-color:red">def
</div>
<br>
<button onclick="fn()">empty the data att</button>
&#13;
我有一个对象标签。它的数据属性指向SVG文件。我想动态更改数据属性,然后才能将其清除。
但设置为空(data =&#34;&#34;)会将整个页面重建为对象标记。 如何正确地清空它?