<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>循环</title>
</head>
<body>
<script>
for(var n=1;n<31;n++){
if(n%3==0||n%10==3){
console.log(n)
}
}
</script>
</body>
</html>