Sponsored Links

:last

尋找所指定的元素組的最後一個元素。

傳回值

Element

mitblog 發表在 痞客邦 留言(0) 人氣()

:first

尋找所指定的元素組的第一個元素。

傳回值

Element

mitblog 發表在 痞客邦 留言(0) 人氣()

prev ~ siblings

尋找prev 元素之後的所有 siblings 元素。

傳回值

Array<Element>

mitblog 發表在 痞客邦 留言(0) 人氣()

prev + next

找所有緊接在 prev 元素後的 next 元素。

傳回值

Array<Element>

mitblog 發表在 痞客邦 留言(0) 人氣()

parent > child

在給定的父元素下找(指定)所有的子元素。

傳回值

Array<Element>

mitblog 發表在 痞客邦 留言(0) 人氣()

ancestor descendant

在給定的祖先元素下的所有後代元素。

傳回值

Array<Element>

mitblog 發表在 痞客邦 留言(0) 人氣()

selector1,selector2,selectorN

將每一個選擇器到的元素合併後一起傳回。
你可以指定任意多個選擇器,並將找到的元素合併到一個結果內。

mitblog 發表在 痞客邦 留言(0) 人氣()

*

尋找所有元素,多用於結合上下文來搜尋。

傳回值

Array<Element>

mitblog 發表在 痞客邦 留言(0) 人氣()

.class

根據給定的類別做為選擇的元素。

返回值

Array<Element>

mitblog 發表在 痞客邦 留言(0) 人氣()

element

根據給定的元素名,尋找所有符合的元素名。

傳回值

mitblog 發表在 痞客邦 留言(0) 人氣()

#id

根據給定的元素ID做為選擇的條件。
如果選擇器中包含特殊字串,可以用兩個斜線轉義。參考範例。

mitblog 發表在 痞客邦 留言(0) 人氣()

這是一個不錯的小工具,可以用來找網路上所開啟的分享共用。

Download:http://sdrv.ms/XSbIdv

mitblog 發表在 痞客邦 留言(0) 人氣()

英文符號的唸法 (English Symbol Read the law)
@ at(At Sign) " ditto marks ' apostrophe
$ dollar sign & and(amphersand) / slash(virgule)
- dash  [ ] brackets ~ tilde
. dot : colon ! exclamation mark
; semicolon   () parentheses \ backslash
? question mark + plus % percent
- minus # number * asterisk (star)
^ hat = equal {} braces
> greater than < less than " double quote
' single quote , comma . period(full stop)
Vertical bar '' Quotation mark _ underline
-= hyphen _= underscore - hyphen
Open brace Close brace // Double slash

文章標籤

mitblog 發表在 痞客邦 留言(0) 人氣()

  • 這篇文章限定好友觀看。
    若您是好友,登入後即可閱讀。
#include <iostream>
using namespace std;

mitblog 發表在 痞客邦 留言(0) 人氣()