用于创建 HTML 元素的 jQuery 选项
您好,有人可以向我指出文档的方向,该文档指定了使用 jQuery 创建的元素可用的选项吗?例如课程、文本、点击
等
myelement = $("<select/>",
{
"class": "myclass",
click: function(){
console.log(this.value);
},
onchange?: function(){
console.log("don't know the syntax for this");
}
});
Hi can someone point me in the direction of the documentation that specifies what options are available for elements created with jQuery? like class, text, click etc
e.g.
myelement = $("<select/>",
{
"class": "myclass",
click: function(){
console.log(this.value);
},
onchange?: function(){
console.log("don't know the syntax for this");
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自文档:
这意味着:
任何属性,例如
href
或src
任何事件,例如
click
或mouseover
名为
text
的属性,html
、data
、width
、height
或offset
工作方式与相应的 jQuery 类似具有相同名称的方法。在您的情况下,您需要使用事件名称:
change
而不是onchange
。From the documentation:
This means:
Any attribute such as
href
orsrc
Any event such as
click
ormouseover
Properties named
text
,html
,data
,width
,height
oroffset
work just like the corresponding jQuery methods with the same name.In your case you need to use the event name:
change
instead ofonchange
.select 元素受所有表单事件 和 鼠标事件 和 键盘事件以及标准 HTML 属性。
通常,您将使用 name、class、id、style、title 和 tabindex HTML 属性。
我最常使用和看到与选择对象(大多数表单对象)一起使用的事件是单击、悬停(与 .toggle() 一起使用)、mouseleave/mouseenter(而不是悬停/.toggle())。
HTML 属性 http://www.quackit.com/html/tags/html_select_tag .cfm
通过页面上的元素)。
来自用户。它也无法接收焦点,并且在以下情况下将被跳过:
选项卡。
键盘事件 http://api.jquery.com/category/events/键盘事件/
鼠标事件 http://api.jquery.com/category/events/mouse- events/
表单事件 http://api.jquery.com/category/events/form-events/
除此之外,还有相当多的 CSS 属性可以应用于该元素。但是该列表会使这篇文章的长度增加一倍,所以我不会发布它们。
A select element is subject to all of the Form Events and the Mouse Events and Keyboard Events as wells as the standard HTML attributes.
Typically, you'll use the name, class, id, style, title and tabindex HTML attributes.
The events that I've most commonly used and seen used with a select object (most form objects) are the click, hover (used with .toggle()), mouseleave/mouseenter (instead of hover/.toggle()).
HTML Attributes http://www.quackit.com/html/tags/html_select_tag.cfm
through the elements on the page).
from the user. It also cannot receive focus and will be skipped when
tabbing.
Keyboard Events http://api.jquery.com/category/events/keyboard-events/
Mouse Events http://api.jquery.com/category/events/mouse-events/
Form Events http://api.jquery.com/category/events/form-events/
On top of all this, there's quite a bit of CSS attributes that can be applied to the element.. but that list would double the length of this post so I'll refrain from posting them.