jQuery:使用正则表达式查找数据属性

时间:2015-12-13 20:17:24

标签: jquery regex

我试图获取数据属性的值:

<div class="relative-time" data-seconds="1449907467">12 December 2015</div>

如您所见,该值是Unix纪元时间,因此值会有所不同。

到目前为止,我已经尝试过......

$(".relative-time[data-seconds='/[^0-9]+/']");
$( "body" ).data( "data-seconds", /[^0-9]+/ );
$('div[data-seconds="/[^0-9]+/"]');
$("body").attr("data-seconds");
$('*[data-seconds="/[^0-9]+/"]');

......但这些都没有任何回报。

假设正则表达式不正确,我将其换成实际值,但没有变化。

欢迎任何想法。

1 个答案:

答案 0 :(得分:1)

获取值

$('.relative-time').data('seconds');

更改为日期

new Date($('.relative-time').data('seconds') * 1000));

打印到控制台

console.log(new Date($('.relative-time').data('seconds') * 1000));

on jsfiddle

<强>更新

或者使用jQuery原型函数:

(function($) {
   $.fn.setDate = function() {
     this.text(new Date(this.data('seconds') * 1000));
     // or return value
     // return new Date(this.data('seconds') * 1000);
   }
})(jQuery);

读取和设置值:

$(".relative-time").setDate();

on jsfiddle