Js基礎學習和應用

2021-06-28 12:03:34 字數 695 閱讀 3252

1、防止不支援js的瀏覽器出問題可以這樣處理js**

2、js放置位置:

header:確保指令碼被呼叫時已經載入

body:頁面載入時就呼叫

外部js檔案:不包含標籤

用法:.....

3、注釋

單行://

多行:/*.....*/

4、=== 全等符號 表示型別和值都相等

5、三種提示框

警告:alert("alert");

確認:confirm("confirm");

6、for in 宣告

for (變數 in 物件)

7、正規表示式

test()方法:檢索字串中的指定值,如果有返回true,否則false

var patt1=new regexp("e");

document.write(patt1.test("the best things in life are free"));

exec()方法:檢索字元中中的指定值,如果有返回找到的值,否則返回null

var patt1=new regexp("e");

document.write(patt1.exec("the best things in life are free"));

compile()方法:用於改變檢索模式和新增刪除第二個引數 

js基礎應用小結

三 給某物件賦值 四 ajax調取介面 d operate instruction get parent css display none var id obj attr id var email obj attr email form control style height 24px margi...

js學習基礎

js學習基礎 變數 定義宣告變數 形式 var 變數名 變數值 可以用typeof 函式獲取變數型別 資料型別 1.基礎資料型別 數字 number 整型 int 浮點型 float double 布林值boolean 字串 string 2.復合資料型別 陣列array定義方式 var arr n...

js基礎學習

1.值型別 var a 100 var b a a 200 console.log b 1002.引用型別 物件,陣列,函式 限制擴充套件屬性 var a var b a b.age 21 console.log a.age 213.typeof 運算子 只能區分值型別,除了函式型別 typeof ...