如何在jquery mobile或jquery中获取当前时间

时间:2013-07-26 16:34:53

标签: jquery jquery-mobile

你能告诉我如何获得当前时间吗?我希望用它前面的文字显示当前时间。

示例:

我必须带一个div标签,其中我有一个标签(有当前时间)前面我想要显示一些文字。怎么做?

其实我的问题不同了。我正在解决破坏部分的问题。

由于

2 个答案:

答案 0 :(得分:10)

您可能最好只使用常规JavaScript: date对象有一个getTime方法: http://www.w3schools.com/jsref/jsref_gettime.asp

  var currentTime = new Date()
  var hours = currentTime.getHours()
  var minutes = currentTime.getMinutes()


  if (minutes < 10)
  minutes = "0" + minutes

然后,使用jQuery,您可以在div中显示它:

  $('#divID').html("<b>" + hours + ":" + minutes + " " + "</b>");

然后,您可以在其前面添加所需的任何文本:

  $('#divID').prepend('<p>Text before timestamp<p>');

答案 1 :(得分:8)

你的意思是这样的:

function date() {
    var now = new Date(),
        now = now.getHours()+':'+now.getMinutes()+':'+now.getSeconds();
    $('#time').html(now);
}

演示:http://jsfiddle.net/u32pU/