div 아래에 표면 그래픽 요소를 만드는 다음 dojo 코드가 있습니다.
....
<script type=text/javascript>
....
function drawRec(){
var node = dojo.byId("surface");
// remove all the children graphics
var surface = dojox.gfx.createSurface(node, 600, 600);
surface.createLine({
x1 : 0,
y1 : 0,
x2 : 600,
y2 : 600
}).setStroke("black");
}
....
</script>
....
<body>
<div id="surface"></div>
....
drawRec()
사각형 그래픽을 처음으로 그립니다. 다음과 같이 anchor href 에서이 함수를 다시 호출하면 :
<a href="javascript:drawRec();">...</a>
다른 그래픽을 다시 그립니다. div 아래의 모든 그래픽을 정리하고 다시 생성 해야하는 것. 이를 위해 dojo 코드를 어떻게 추가 할 수 있습니까?