“jQuery получить атрибут данных” Ответ

jQuery получить значение атрибута данных

/* html */
<a data-id="123">link</a>

/* js */
$(this).attr("data-id") // returns string "123"

$(this).data("id") // returns number 123 (jQuery >= 1.4.3 only)
Potato

JS Получить атрибут данных

var element = document.querySelector('.element');
var dataAttribute = element.getAttribute('data-name');
// replace "data-name" with your data attribute name

console.log(dataAttribute);
Eloquent Design

Атрибут данных jQuery

/* html */
<a data-number="123">link</a>

/* js */
$(this).attr("data-number") // returns string "123"

$(this).data("number") // returns number 123 (jQuery >= 1.4.3 only)
Potato

Найдите элемент с атрибутом данных jQuery

$("ul").find(`[data-slide='${current}']`)
Better Bird

jQuery получить атрибут данных

$('input[type=radio][name=supplier_price]').change(function () {
            var $id                   = $(this).val(),
                $price                = $(this).data('price'),
                $intend_price         = $(this).data('intend-price'),
                $product__month_price = $('#product__month_price'),
                $product_price        = $('#product_price');

            console.log($price, $intend_price);

        });
Shadow

jQuery получить атрибут данных

<a data-id="123">link</a>


var id = $(this).data("id"); // Will set id to 123
Mingles444

Ответы похожие на “jQuery получить атрибут данных”

Вопросы похожие на “jQuery получить атрибут данных”

Больше похожих ответов на “jQuery получить атрибут данных” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования