JavaScript 的功能之強(qiáng)大,能夠做到很多新功能,以下介紹常用的互動(dòng)方法。
輸出內(nèi)容
document.write()
可以用做直接給 HTML 輸出流的內(nèi)容,換而言之就是能在網(wǎng)頁中直接輸出內(nèi)容。
一、需要輸出的內(nèi)容要用 " "來包圍,直接輸出 " " 號中的內(nèi)容
<script type="text/javascript">
document.write("I love JavaScript!"); //內(nèi)容用""括起來,""里的內(nèi)容直接輸出。
</script>
二、通過變量輸出內(nèi)容
<script type="text/javascript">
var mystr="hello world!";
document.write(mystr); //直接寫變量名,輸出變量存儲(chǔ)的內(nèi)容。
</script>
三、輸出多個(gè)內(nèi)容,間隔用 + 號連接起來。
<script type="text/javascript">
var mystr="hello";
document.write(mystr+"I love JavaScript"); //多項(xiàng)內(nèi)容之間用+號連接
</script>
四、輸出 HTML 標(biāo)簽,并用 " "包圍起來
<script type="text/javascript">
var mystr="hello";
document.write(mystr+"<br>");//輸出hello后,輸出一個(gè)換行符
document.write("JavaScript");
</script>
實(shí)例:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>document.write</title>
<script type="text/javascript">
var mystr="我是";
var mychar="JavaScript";
document.write(mychar+"<br>");
document.write(mystr+mychar+"的忠實(shí)粉色!")
</script>
</head>
<body>
</body>
</html>
以上就是小編為您整理的關(guān)于 JavaScript 常用互動(dòng)方法 的全部內(nèi)容。