作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,我的代码编译没有错误,并且列表部分显示没有任何问题。然而,图表的代码没有显示任何内容(.script 中您看到 var tp 的部分。)HTML 输出仅显示图表的任何输出。其他一切似乎都是有效的。
extends layout
doctye html
html(lang='en')
head
script(language='javascript',type='text/javascript',src='jquery.min.js')
script(language='javascript',type='text/javascript',src='jquery.jqplot.min.js')
link(rel='stylesheet',type='text/css',href='jquery.jqplot.css')
div(id='chartdiv',style='height:400px;width:700px;')
body
script.
var tp = [95,85,73,10,0,55,80,118,45,47,60,65,36,78,99];
$.jqplot('chartdiv', [[[0, 15],[10,78]],[[0, tp[0]],[1,tp[1]],[2,tp[2]],
[3,tp[3]],[4,tp[4]],[5,tp[5]],[6,tp[6]],[7,tp[7]]]],
{ title:'Temperatures',
axes:{xaxis:{label:'Time (seconds)', min:0, max:15, numberTicks:16},
yaxis:{label:'Temperature (F)', min:0, max:120, numberTicks:13}},
series:[{color:'#5FAB78'},{color:'#000077'}],
legend:{show:true, labels:['Cats','Dogs']}
});
block content
h1.
User List
ul
each user, i in userlist.reverse()
li
<p> TIME #{user.wd1} WD #{user.wd2} WS #{user.wd3} WS1HR #{user.wd4}
TEMP #{user.wd5} CHILL #{user.wd6} ALT #{user.wd7}
HUM #{user.wd8} PRESS #{user.wd9} SOIL #{user.wd10}
meta(http-equiv='refresh', content='5')
最佳答案
您的代码中有很多问题,看看什么对我有用,然后我会检查问题列表:
extends layout
doctype html
html(lang='en')
head
script(language='javascript',type='text/javascript',src='jquery.min.js')
script(language='javascript',type='text/javascript',src='jquery.jqplot.min.js')
link(rel='stylesheet',type='text/css',href='jquery.jqplot.css')
body
script.
$(document).ready(function(){
var tp = [95,85,73,10,0,55,80,118,45,47,60,65,36,78,99];
$.jqplot('chartdiv', [[[0, 15],[10,78]],[[0, tp[0]],[1,tp[1]],[2,tp[2]],
[3,tp[3]],[4,tp[4]],[5,tp[5]],[6,tp[6]],[7,tp[7]]]],
{ title:'Temperatures',
axes:{xaxis:{label:'Time (seconds)', min:0, max:15, numberTicks:16},
yaxis:{label:'Temperature (F)', min:0, max:120, numberTicks:13}},
series:[{color:'#5FAB78'},{color:'#000077'}],
legend:{show:true, labels:['Cats','Dogs']}
});
});
block content
div(id='chartdiv',style='height:400px;width:700px;')
h1.
User List
ul
each user, i in userlist.reverse()
li
<p> TIME #{user.wd1} WD #{user.wd2} WS #{user.wd3} WS1HR #{user.wd4}
TEMP #{user.wd5} CHILL #{user.wd6} ALT #{user.wd7}
HUM #{user.wd8} PRESS #{user.wd9} SOIL #{user.wd10}
meta(http-equiv='refresh', content='5')
doctype
中的 pdiv
位于 body
标记上方。$(document).ready(function(){
开头,然后以另一个 }) 结尾;
使用上面的代码,如果您正确嵌入了 *.js 和 *.css,则应该显示您的图表!
关于javascript - 刚接触 Jade 。想知道为什么图表没有显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22795987/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!