jQuery日本語リファレンス
jQuery does not mean Japanese Query...
ヌー
Selectors/API/jQuery
基本
#id
指定されたidを持つ要素を選択する。
element
指定されたタグ名の要素を選択する。
.class
指定されたクラスを持つ要素を選択する。
*
全ての要素を選択する。
selector1, selector2, ..., selectorN
複数のセレクターを指定して集合要素を選択する。
階層
ancestor descendant
ancestorを先祖に持つdescendantを選択する。
parent> child
親子関係を指定して要素を選択する。
prev + next
前後関係を指定して要素を選択する。
prev ~ siblings
prev以降の兄弟関係にある要素を選択する。
基本フィルタ
:first
先頭の要素を選択する。
:last
末尾の要素を選択する。
:not(selector)
指定したセレクターを除外した要素を選択する。
:even
偶数番の要素を選択する。
:odd
奇数番の要素を選択する。
:eq(index)
インデックス指定した要素を選択する。
:gt(index)
指定したインデックスより後の要素を選択する。
:lt(index)
指定したインデックスより前の要素を選択する。
:header
h1,h2などのヘッダ要素を選択する。
:animated
アニメーション中の要素を選択する。
コンテントフィルタ
:contains(text)
指定した文字列を含む要素を選択する。
:empty
空要素を選択する。
:has(selector)
指定したセレクター要素を子孫に持つ要素を選択する。
:parent
何がしかの子要素(テキストも含む)を持つ要素を選択する。
表示/非表示フィルタ
:hidden
非表示の要素や、hidden属性のinpout要素を選択する。
:visible
可視状態にある要素を選択する。
属性フィルタ
[attribute]
指定された属性を持つ要素を選択する。
[attribute=value]
属性が指定された値を持つ要素を選択する。
[attribute!=value]
属性が指定された値を持たない要素を選択する。
[attribute^=value]
属性値が指定された文字列から始まる要素を選択する。
[attribute$=value]
属性値が指定された文字列で終わる要素を選択する。
[attribute*=value]
属性値が指定された文字列を含む要素を選択する。
[selector1][selector2]...[selectorN]
複数の属性フィルタを指定し、全てを満たす要素を選択する。
子要素フィルタ
:nth-child(index/even/odd/equation)
各親要素に対してn番目、偶数、奇数、n個おきなどの指定をして要素を選択する。
:first-child
各親要素に対して最初の子要素を選択する。
:last-child
各親要素に対して最後の子要素を選択する。
:only-child
各親要素が1つだけ子要素を持つ場合に、その子要素を選択する。
フォーム
:input
全てのinput, textarea, select, button要素を選択する。
:text
全てのtext要素を選択する。
:password
全てのpassword要素を選択する。
:radio
全てのradio要素を選択する。
:checkbox
全てのcheckbox要素を選択する。
:submit
全てのsubmit要素を選択する。
:image
全てのimage要素を選択する。
:reset
全てのreset要素を選択する。
:button
全てのbutton要素を選択する。
:file
全てのfile要素を選択する。
:hidden
全てのhidden要素と、不可視状態にある要素を選択する。
フォームフィルタ
:enabled
利用可能な状態にある全ての要素を選択する。
:disabled
利用不可な状態にある全ての要素を選択する。
:checked
チェックの入っている全ての要素を選択する。
:selected
選択状態にある全ての要素を選択する。
Home
API
Core
Selectors
Attributes
Traversing
Manipulation
CSS
Events
Effects
Ajax
Utilities
Internals
逆引きリファレンス
API Search:
add(expr)
addClass(class)
after(content)
ajaxComplete( callback )
ajaxError( callback )
ajaxSend( callback )
ajaxStart( callback )
ajaxStop( callback )
ajaxSuccess( callback )
ancestor descendant
andSelf()
animate(params, [duration], [easing], [callback])
animate(params, options)
append(content)
appendTo(content)
attr(key,fn)
attr(key,value)
attr(name)
attr(properties)
before(content)
bind(type, [data], fn)
blur()
blur(fn)
change()
change(fn)
children([expr])
click()
click(fn)
clone()
clone(true)
closest([expr])
contents()
context
css(name)
css(name, value)
css(properties)
dblclick()
dblclick(fn)
dequeue()
die([type], [fn])
each(callback)
element
empty()
end()
eq(index)
eq(position)
error()
error(fn)
fadeIn([speed], [callback])
fadeOut([speed], [callback])
fadeTo(speed, opacity, [callback])
filter(expr)
filter(fn)
find(expr)
focus()
focus(fn)
get()
get(index)
hasClass(class)
height()
height(val)
hide()
hide(speed, [callback])
hover(over, out)
html()
html(val)
index(subject)
innerHeight()
innerWidth()
insertAfter(content)
insertBefore(content)
is(expr)
jQuery(callback)
jQuery(elements)
jQuery(expression, context)
jQuery(html, [ownerDocument])
jQuery.ajax(options)
jQuery.ajaxSetup( options )
jQuery.boxModel
jQuery.browser
jQuery.browser.version
jQuery.data(elem)
jQuery.data(elem, name)
jQuery.data(elem, name, value)
jQuery.each(object, callback)
jQuery.extend(object)
jQuery.extend(target, object1, [objectN])
jQuery.fn.extend(object)
jQuery.fx.off
jQuery.get( url, data, callback )
jQuery.getJSON( url, data, callback )
jQuery.getScript( url, callback )
jQuery.grep(array, callback, [invert])
jQuery.inArray(value, array)
jQuery.isArray(obj)
jQuery.isFunction(obj)
jQuery.makeArray(obj)
jQuery.map(array, callback)
jQuery.noConflict()
jQuery.noConflict(extreme)
jQuery.param(obj)
jQuery.post( url, data, callback, type )
jQuery.removeData(elem)
jQuery.removeData(elem, name)
jQuery.support
jQuery.trim(str)
jQuery.unique(array)
keydown()
keydown(fn)
keypress()
keypress(fn)
keyup()
keyup(fn)
length
live(type, fn)
load( url, data, callback )
load(fn)
map(callback)
mousedown(fn)
mousemove(fn)
mouseout(fn)
mouseover(fn)
mouseup(fn)
next([expr])
nextAll([expr])
not(expr)
offset()
one(type, [data], fn)
outerHeight([options])
outerWidth([options])
parent> child
parent([expr])
parents([expr])
position()
prepend(content)
prependTo(content)
prev + next
prev ~ siblings
prev([expr])
prevAll([expr])
queue()
queue(callback)
queue(queue)
ready(fn)
remove([expr])
removeAttr(name)
removeClass(class)
replaceAll(selector)
replaceWith(content)
resize(fn)
scroll(fn)
scrollLeft()
scrollLeft(val)
scrollTop()
scrollTop(val)
select()
select(fn)
selector
selector1, selector2, ..., selectorN
serialize( )
serializeArray( )
show()
show(speed, [callback])
siblings(expr)
size()
slice(start, [end])
slideDown([speed], [callback])
slideToggle([speed], [callback])
slideUp([speed], [callback])
stop()
submit()
submit(fn)
text()
text(val)
toggle()
toggle(fn1, fn2, ..., fnN)
toggle(speed, [callback])
toggle(switch)
toggleClass(class)
toggleClass(class, switch)
trigger(type, [data])
triggerHandler(type, [data])
unbind([type], [data])
unload(fn)
val()
val(val)
width()
width(val)
wrap(elem)
wrap(html)
wrapAll(elem)
wrapAll(html)
wrapInner(elem)
wrapInner(html)
#id
*
.class
:animated
:button
:checkbox
:checked
:contains(text)
:disabled
:empty
:enabled
:eq(index)
:even
:file
:first
:first-child
:gt(index)
:has(selector)
:header
:hidden
:image
:input
:last
:last-child
:lt(index)
:not(selector)
:nth-child(index/even/odd/equation)
:odd
:only-child
:parent
:password
:radio
:reset
:selected
:submit
:text
:visible
[attribute!=value]
[attribute$=value]
[attribute*=value]
[attribute=value]
[attribute]
[attribute^=value]
[selector1][selector2]...[selectorN]
© Copyright 2009 by
semooh.jp
| Design by
Free CSS Templates
- Thanks to
Dubai Apartments
AltStyle
によって変換されたページ
(->オリジナル)
/
アドレス:
モード:
デフォルト
音声ブラウザ
ルビ付き
配色反転
文字拡大
モバイル