$('#xxxId').data("mentId", "223344"); console.log($('#xxxId').attr("data-mentId")); console.log($('#xxxId').data("mentId"));
使用data()设置,必须使用data()方法获取。
标签上之前就有data-xxx,必须使用$('#xxxId').attr("data-mentId")获取。
$('#xxxId').data("mentId", "223344"); console.log($('#xxxId').attr("data-mentId")); console.log($('#xxxId').data("mentId"));
使用data()设置,必须使用data()方法获取。
标签上之前就有data-xxx,必须使用$('#xxxId').attr("data-mentId")获取。