- 通过调用 document.write(string); 来表示内容
- string 为 html网页中的内容
- 如:
12
3
4
5
6
<script type=
"text/javascript"
>
var
test = parseInt(
"as123"
);
document.write(test);
document.write(
"</br>"
);
document.write(6666);
</script>
时间: 2024-10-13 21:56:57
1 2 3 4 5 6 |
|