主题:
3024-night
ambiance-mobile
ambiance
base16-dark
blackboard
cobalt
eclipse
erlang-dark
lesser-dark
mbo
mdn-like
midnight
monokai
neat
neo
night
paraiso-dark
pastel-on-dark
rubyblue
solarized
the-matrix
tomorrow-night-eighties
vibrant-ink
新窗口
视图:
左侧面板
HTML
CSS
JS
预览
F11(全屏显示选中的编辑器)
查看更多帮助信息
相关文章:
jQuery 选择器(:input)详解
代码类型:
默认(HTML/CSS/JS)
HTML混合(单页)
PHP
Java
C#
C++
C
SQL
杂项:
启用CSS/JS语法检查
监测脚本运行错误
禁止库文件重复
文档类型:
HTML5
HTML 4.01 Strict
HTML 4.01 Transitional
HTML 4.01 Frameset
XHTML 1.0 Strict
XHTML 1.0 Transitional
XHTML 1.0 Frameset
无
JS库文件:
无
jQuery 1.11.1
jQuery 2.1.1
jQuery 1.10.2
jQuery 1.9.1
jQuery 1.8.3
jQuery 1.7.2
jQuery 1.6.4
jQuery 1.5.2
jQuery 1.4.4
jQuery 1.3.2
jQuery 1.2.6
手动添加:
jQuery 1.11.1
<div id="n1"> <form id="n2"> <input id="n3" type="button" value="Input Button"/> <input id="n4" type="checkbox" /> <input id="n5" type="file" /> <input id="n6" type="hidden" /> <input id="n7" type="image" /> <input id="n8" type="password" /> <input id="n9" type="radio" /> <input id="n10" type="reset" /> <input id="n11" type="submit" /> <input id="n12" type="text" /> <select id="n13"> <option id="n14">Option</option> </select> <textarea id="n15"></textarea> <button id="n16">Button</button> </form> </div>
// 扩展jQuery对象,添加showTagInfo()方法 // 用于将jQuery对象所有匹配元素的标识信息追加到body元素内 // 每个元素的标识信息形如:"tagName"或"tagName#id" jQuery.fn.showTagInfo = function(){ var tags = this.map( function(){ return this.tagName + ( this.id ? "#" + this.id : "" ); } ).get(); $("body").append( "<br>" + tags.join("<br>") + "<br>" ); }; // 选择了id分别为n3 ~ n16(除了n14)的13个元素 $(":input").showTagInfo();