.each 에서 빠져나오는 방법
2021. 1. 24. 20:58ㆍJavascript/jQuery
return false를 추가하면, 빠져나옴
function box() {
context.lineWidth = 1
context.strokeStyle = 'rgba(255,0,0,1)';
$.each(boxes, function(i, box) {
x = box[1]
y = canvas.height-box[4]
width = box[3] - x
height = canvas.height-box[2] - y
context.strokeRect(x,y,width,height)
context.stroke()
return false
})
'Javascript > jQuery' 카테고리의 다른 글
canvas 확대/축소 (0) | 2021.02.12 |
---|---|
HTML 태그 삭제 (0) | 2021.01.24 |
canvas getContext 인식 (0) | 2021.01.24 |
id가 없는 canvas 찾아서 id 셋팅하기 (0) | 2021.01.23 |
API 참조 방법 (0) | 2021.01.23 |