我想要实现的目标是从同一元素中的另一个属性获得一个属性。例如:
<script>
$("#step1").click(function() {
// Get the attribute 'next' and get its value.
});
</script>
<button id="step1" next=".openNextModal">
答案 0 :(得分:3)
您需要使用import pyside
attr()
答案 1 :(得分:2)
尝试以下。
$("#step1").click(function() {
console.log($(this).attr('next'));
});