Skip to content

Commit 5667df2

Browse files
authored
Update hitNJLZ.html
1 parent a9a7ea0 commit 5667df2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/hitNJLZ.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
$("#njlzframe").attr('src', $('#iframe').attr('src'));
1010
}
1111
$("#start").click(function(){
12-
t1 = $("#njlzframe").setInterval(loadf(),10);
12+
t1 = setInterval(loadf(),10);
1313
});
1414
$("#end").click(function(){
15-
$("#njlzframe").removeInterval(t1);
15+
clearInterval(t1);
1616
});
1717

1818
});

0 commit comments

Comments
 (0)