javascript – 函数参数是本机元素还是jQuery集?

我正在用 JavaScript编写通用辅助函数.它访问元素的className属性.

但是因为我正在使用jQuery,事实证明有时作为参数传递的元素实际上是一个数组(一个jQuery集).

如果参数是一个元素,那么使用参数的最简单方法是什么?如果参数是一个集合,则从集合中获取一个元素是什么? jQuery有这个工具吗?

解决方法

您可以使用instanceof测试对象是否是jQuery对象:

if (myObject instanceof jQuery) {
    // use $.each to loop over myObject and get class names of all
    // or just use myObject[0].className to return only the first
} else {
    // it's not a jQuery object
}

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...