我在 Zurb's Foundation 中使用 Express 和 Jade。
这是我第一次遇到这个问题,我被卡住了。
我不断收到此错误。
Uncaught TypeError: Object [object Object] has no method 'foundation'
我打赌我会通过使用 Jade 来解决这个问题,但如果我是的话,我就迷路了。这是代码的核心:
!!! 5
//if lt IE 7
html.no-js.ie6.oldie(lang='en')
//if IE 7
html.no-js.ie7.oldie(lang='en')
//if IE 8
html.no-js.ie8.oldie(lang='en')
//[if gt IE 8]><!
html.no-js(lang='en')
//<![end if]
head
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge,chrome=1')
title=title
meta(name="description", content=description)
meta(name="author", content=author)
meta(name="viewport", content='width=device-width, initial-scale=1')
link(rel="stylesheet", href="/stylesheets/foundation.min.css")
script(src="/javascripts/vendor/custom.modernizr.js")
script(src="https://cdn.firebase.com/v0/firebase.js")
script(src='//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js')
body
.row
block content
// Foundation Footer tools
script.
document.write('<script src=' +
('__proto__' in {} ? 'javascripts/vendor/zepto' : 'javascripts/vendor/jquery') +
'.js><\\/script>')
script(defer, src='/javascripts/foundation.min.js')
script.
$(document).foundation();
block scripts
有任何想法吗?