這裏是我的htmlSVG顯示
<div id="parent_div" style="display:none">
<svg width=400 height=200>elements of svg in here</svg>
</div>
<button onclick="showParentDiv();" />
這裏是我的javascript
function showParentDiv()
{
//I need a svg onload event is fired after its parent div is shown.
//End function
$("#parent_div").show();
}
感謝您的幫助
我已經用它。 但我有12個SVG元素,並且在回調運行之後,只有6個SVG元素被渲染。 – beginner