我目前有以下代码

doctype html
html
  head
    title Test
    link(rel='stylesheet', href='/stylesheets/style.css')
    link(rel='stylesheet', href='/stylesheets/bootstrap.min.css')
    script(src="/javascripts/jquery.js")

  body
    script.
      var start = Date.now()
      console.log(start)
      div(id='microtime')
        p
    script.
      $(document).ready(function() {
      var end = (Date.now() - start) / 1000
      console.log(end)
      $('#microtime p').text = 'aa'
      })


我试图制作一个microtime来显示页面加载时间,目前代码在控制台上显示0错误,但#microtime p文本未更新,div microtime没有任何css属性,console.log运行正常...

最佳答案

更换

$('#microtime p').text = 'aa'




$('#microtime p').text('aa');

关于javascript - jQuery的Jade.js,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23551062/

10-10 00:09