框架知識點2

2021-10-06 12:57:01 字數 3980 閱讀 7564

<

!doctype html>

"en"

>

"utf-8"

>

"viewport" content=

"width=device-width, initial-scale=1.0"

>

document<

/title>

'jquery-1.10.1.min.js'

>

<

/script>

/* 【注】jq是js封裝的乙個**庫。

【注】jq中相容js所有的寫法。

【注】jq底層是用js的物件導向封裝的。jq呼叫一些方法的時候,基本上都是通過jq物件呼叫的。

*/// alert(typeof $); //function 建構函式

// alert($ === jquery); //true

// $(function())

// //上下兩個**等價

// jquery(function())

// function $()

// //只有在 jquery.prototype 新增過的方法,jq物件才可以呼叫

// jquery.prototype.click = function()

// $("div");

// new jquery("div");

// new jquery("div").click()

// $("div").click()

/* 你要使用jq方法,前面必須是jq物件。

非jq物件不能呼叫jq的方法。

【注】jq和js 可以共存,但是不能混用。

【注】js的常用物件:

window document this(儲存是物件的位址)/實際情況分析

$("字串") css選擇器 獲取元素節點,返回jq物件

$(函式) 等價於 window.onload

$(物件) 將物件直接轉成jq物件。

$(document) 返回jq物件

$(window)

*/$(function ())

// document.onclick = function ()

// document.click(function())

$(document)

.click

(function()

) $($($(document)))

.click

(function()

)})<

/script>

<

/head>

'div1'

>div文字<

/div>

<

/body>

<

/html>

<

!doctype html>

"en"

>

"utf-8"

>

"viewport" content=

"width=device-width, initial-scale=1.0"

>

document<

/title>

'jquery-1.10.1.min.js'

>

<

/script>

/* has 包含,對於已經獲取到的元素進行篩選,篩選的條件是,是否包含符合條件的子節點

not filter的反義詞

filter 過濾,對我們已經查詢到的元素節點進行二次的篩選

*/$(

function()

)<

/script>

<

/head>

div1文字='box'

>span文字<

/span>

<

/div>

='box'

>div2文字<

/div>

<

/body>

<

/html>

<

!doctype html>

"en"

>

"utf-8"

>

"viewport" content=

"width=device-width, initial-scale=1.0"

>

document<

/title>

'jquery-1.10.1.min.js'

>

<

/script>

//next() 找到當前節點的下乙個兄弟節點

//prev() 找到當前節點的上乙個兄弟節點

$(function()

)<

/script>

<

/head>

div文字<

/div>

span文字<

/span>

p文字<

/p> strong文字<

/strong>

<

/body>

<

/html>

<

!doctype html>

"en"

>

"utf-8"

>

"viewport" content=

"width=device-width, initial-scale=1.0"

>

document<

/title>

'jquery-1.10.1.min.js'

>

<

/script>

/* find 方法是專門用來查詢子節點的

index() 獲取當前節點的,在【兄弟節點】中的下標

eq() 通過下標獲取符合條件的節點

*/$(

function()

)<

/script>

<

/head>

='box'

>

<

/li>

'world'

>

<

/li>

<

/li>

='box'

>

<

/li>

<

/ul>

span文字<

/span>

'world'

>

<

/li>

'li1'

class

='box'

>

<

/li>

<

/li>

<

/ol>

<

/body>

<

/html>

<

!doctype html>

"en"

>

"utf-8"

>

"viewport" content=

"width=device-width, initial-scale=1.0"

>

document<

/title>

"./jquery-1.10.1.min.js"

>

<

/script>

//attr 專門用來操作某些元素節點的行間屬性

$(function()

)})<

/script>

<

/head>

'div1' title =

'world' name =

'hello' *** =

'yyy'

>

<

/div>

<

/body>

<

/html>

Foundation 框架知識點

框架的定義 由一堆類,方法,函式,文件等有序的結合在一起 nsstring介紹及基本使用 一般成nsstring為字串的類.writetofile 的方法 把nsstring 字串儲存到檔案中 nsstring str zhangsanfeng 文字編碼 中文 gbk gb2312 2 2 utf ...

Redis 框架知識點

redis 1.特點 效能極高 記憶體型資料庫,讀寫速度極快 豐富的資料型別 可以資料持久化 出於效能考慮,不是高可靠 設定過期時間 可以進行資料淘汰 不完整的事務 無法回滾,資料一致性無法保證 2.使用場景 對速度有要求,並可能需要設定過期時間,主要用於資料快取 3.客戶端 服務端 命令 啟動re...

Android框架 dagger2知識點補缺

1.scope機制可以使得在scope存在時保持類的單例 2.沒有指定作用域的 provides方法會在每次注入的時候都建立新的物件 3.乙個沒有scope的元件component不可以依賴乙個有scope的元件component,子元件和父元件的scope不能相同。subcomponent註解的可...