Expressアプリケーションにjqueryjsファイルを含めるのに問題があります。jquery.jsファイルを/public/ javascriptsフォルダーに追加し、layout.jadeファイルを次のように変更しました。
!!!5
html
head
title= title
meta(name='viewport', content='width=device-width,initial-scale=1')
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='/stylesheets/jquery.mobile-1.0.1.min.css')
script(type='text/javascript', src='/javascripts/jquery.mobile-1.0.1.min.js')
script(type='text/javascript', src='/javascripts/jquery-1.7.2.min.js')
body!= body
app.use(express.static(__ dirname +'/ public'));も含めました。app.js.Iでindex.jadeを次のように変更して、jqueryモバイルタグをいくつか含めました。
div(data-role='page')
div(data-role='header')
h1= title
div(data-role='content')
ul(data-role='listview',data-inset='true',data-filter='true')
li: a(href='#') Acura
問題は、Webページを正しくレンダリングできないことです。jquery関連のスタイルが表示されません。それを修正する方法を知っている人はいますか?
ありがとう、