js日常總結

2022-07-26 13:36:09 字數 1774 閱讀 7742

1.html如何引入css和js檔案

2.jquery常用操作

html()方法的返回和設定被選元素的內容(inner html)。

js

findindex和tostring結合使用查詢當前的item是處於陣列中第幾項:

table_list = [1,1,2,35,5,9]

$(document).ready(

function

());

});

val()方法返回或設定被選元素的值

$(document).ready(function

());

});

獲取select選中項中存在data裡面的值

<

select

class

="myselect"

>

<

option

value

="switch"

data-name

="開關"

>開關

option

>

<

option

value

="light"

data-name

="燈光"

>燈光

option

>

select

>

$(".myselect").find("option:selected").attr("data-name"); 獲取選中項的data-name的值「開關」;

$(".myselect").val();獲取value的值switch。

parselnt將xx轉化為number:number()適用於所有型別,parseint()和parsefloat()適用於字串

indexof 判斷myitem是否存在於itemarray陣列中,存在返回第乙個索引,否則返回-1:

indexof()方法 是正序查詢,lastindexof()是倒敘查詢

//

var index = json.stringify(itemarray).indexof(json.stringify(myitem));

$("#btn").click(function

());

location.reload() 重新整理頁面

window.location.reload

attr() 和removeattr()

$(".input").attr("placeholder", "請輸入您的密碼")

$(" input").removeattr("date-targer");

prop() 和 removeprop()

<

script

>

<

/scrip$("#btn").prop("checked");

//truet>

<

label

>

<

input type="

checkbox

"value="

核取方塊"id=

"btn

"checked ="

true

"disabled =""

>

<

/label>

深度理解

總結 日常總結

最近變得浮躁了,學不進了,那就寫總結吧。關於刷題 從去年十一月份到現在,感覺唯一堅持的意見事情就是刷力扣了。四個多月,寫了六百多道題,大概有四五題一天,然後也在堅持參加周賽。很多時候,有些事情成了習慣,那麼也就不需要去堅持了。比如說現在,每天都是先把每日一題和劍指 offer 的任務完成了再開始做其...

js 日常問題

2 js 中的new 到底做了些什麼?要建立某的新例項 必須要使用new 操作符。以這種方法呼叫建構函式實際上會經 歷以下四個步驟 1,建立乙個新物件 2,將建構函式的作用域賦給新物件 因此this就指向這個新物件 3,執行建構函式中的 為這個新物件新增屬性 4,返回新物件 var obj obj....

JS開發日常總結 JS字串判空

js判空問題 早上由於業務改動需要做個判空處理,但是用既定的方法去判斷一直不行,之前抽號的方法是 export functionisundefined v export functionisnull v 用這兩個都沒有辦法的情況下,在網上看到了typeof 方法 看了一下返回的結果是string型別...