js的核心是由Bom Dom ECMAScript組成的。html
Bom 是指的瀏覽器的window對象,它包含一些屬性和方法。
好比:
location屬性,
alert屬性,
confirm屬性,
window.open('url',_blank,some)
window.setTimeout();
window.setInterval();
window.history對象
history.go(-1);
history.back()
history.forword();
Dom是指的文檔對象模型包括,document,head html body Element.
document是其中的一個對象。
平時咱們經過js改變頁面就是改變的dom對象,從而展示給每一個人。
ECMAScript是一種規則,是一種標準的腳本程序語言。
複製代碼