如何从JavaScript中获取$(this)中的特定数据?

时间:2018-01-11 12:18:50

标签: javascript jquery json this

当我console.log($(this));时,我收到了以下信息: -

Image Here

我想加入$(this),进入context,然后加入attributes。怎么样?

1 个答案:

答案 0 :(得分:0)

假设您想从此元素中获取属性 -

<div class="test_class" data-somevalue="this is value"> </div>

您可以使用 -

$(".test_class").attr("data-somevalue")
//or
$(".test_class").data("somevalue")

在您的情况下,您也可以使用

const finalVal = Object.assign({}, $(this), $(this).context, $(this). attributes)