jQuery val()与this.value的下拉列表 [英] Jquery val() vs this.value for dropdowns

查看:81
本文介绍了jQuery val()与this.value的下拉列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下代码使用this.value获取表单下拉列表的值.我只大致看到使用.val().以下方式是否可以接受跨浏览器(尤其是IE的旧版本)?谢谢!

The below code uses this.value to get the value of a forms dropdowns. I have only generally seen .val() used. Is the below way acceptable cross-browser (especially older verions of IE)? Thanks!

    $(':input', '#all').each(function() {
       alert(this.value);                 
    });

推荐答案

是的,可以接受,比调用 $(this).val()更易读,并且更便宜(更快).

Yes, it's acceptable, is more readable, and is less expensive (faster) than calling $(this).val().

简单地说, $(this)是指jQuery对象,而 this 是指DOM元素.

Simply put, $(this) refers to a jQuery object, whilst this refers to a DOM element.

常见问题解答此处对此进行了简要介绍(在了解您的DOM属性和功能"下)

The FAQ here touches upon it briefly (under 'Know Your DOM Properties and Functions')

当本地DOM API足够时,您应该使用普通的"this",并且$(this)当您需要jQuery的帮助时.

You should use plain "this" when the native DOM APIs suffice, and $(this) when you need the help of jQuery.

我还建议您阅读以下内容:

I'd also suggest reading the following:

$(this)vs this in jQuery

jQuery:'$(this)'和'this'有什么区别?

何时使用Vanilla JavaScript与jQuery?

利用强大的jquery来访问元素的属性

此已解密的

这篇关于jQuery val()与this.value的下拉列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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