如何从同一元素中的另一个属性获取属性

时间:2015-12-12 17:31:58

标签: javascript jquery html

我想要实现的目标是从同一元素中的另一个属性获得一个属性。例如:

<script>
$("#step1").click(function() {
    // Get the attribute 'next' and get its value.
});
</script>

<button id="step1" next=".openNextModal">

2 个答案:

答案 0 :(得分:3)

您需要使用import pyside

attr()

答案 1 :(得分:2)

尝试以下。

$("#step1").click(function() {
    console.log($(this).attr('next'));
});