如何从一个JQuery选择器获取一个DOM元素 [英] How to get a DOM Element from a JQuery Selector

查看:170
本文介绍了如何从一个JQuery选择器获取一个DOM元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我很难找到从jquery选择器获取实际的DOMElement。示例代码:

 < input type =checkboxid =bob/> 
var checkbox = $(#bob)。click(function(){// some code})

和另一段代码我试图确定复选框的检查值。

  if (checkbox.eq(0).SomeMethodToGetARealDomElement()。checked)
//做某事。

请不要这样做:

  if(checkbox.eq(0).is(:checked))
//做某事
/ pre>

这是我的复选框,但其他时候我需要真正的DOMElement。

解决方案

您可以使用以下方式访问原始DOM元素:

  $(table)。 (0)获得; 

或更简单地:

  $( 表)[0]; 

不过,实际上你需要这么多(根据我的经验)。拿起你的复选框例子:

  $(:checkbox)点击(function(){
if (this).is(:checked)){
// do stuff
}
});

更多的是jquery'ish和(imho)更简洁。如果你想编号,你该怎么办?

  $(:checkbox)每个(function(i,elem){
$(elem).data(index,i);
});
$(:checkbox)点击(function(){
if($(this).is(:checked)&&($) )== 0){
// do stuff
}
});

其中一些功能也有助于掩盖浏览器的差异。一些属性可以不同。典型的例子是AJAX调用。要在原始Javascript中正确执行此操作,对于 XmlHttpRequest 有约7个后备案例。


I'm having an impossibly hard time finding out to get the actual DOMElement from a jquery selector. Sample Code:

<input type="checkbox" id="bob" />
  var checkbox = $("#bob").click(function() { //some code  } )

and in another piece of code I'm trying to determine the checked value of the checkbox.

  if ( checkbox.eq(0).SomeMethodToGetARealDomElement().checked )
    //do something.

And please, I do not want to do:

  if ( checkbox.eq(0).is(":checked"))
    //do something

That get's me around the checkbox, but other times I've needed the real DOMElement.

解决方案

You can access the raw DOM element with:

$("table").get(0);

or more simply:

$("table")[0];

There isn't actually a lot you need this for however (in my experience). Take your checkbox example:

$(":checkbox").click(function() {
  if ($(this).is(":checked")) {
    // do stuff
  }
});

is more "jquery'ish" and (imho) more concise. What if you wanted to number them?

$(":checkbox").each(function(i, elem) {
  $(elem).data("index", i);
});
$(":checkbox").click(function() {
  if ($(this).is(":checked") && $(this).data("index") == 0) {
    // do stuff
  }
});

Some of these features also help mask differences in browsers too. Some attributes can be different. The classic example is AJAX calls. To do this properly in raw Javascript has about 7 fallback cases for XmlHttpRequest.

这篇关于如何从一个JQuery选择器获取一个DOM元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆