インデックスページがロードされると、テンプレートをロードします。私のインデックスページが含まれていますiCanHaz.jsは、ページがロードされたときにテンプレートをロードしません。
<script src="site/introduction.html" type="text/html"></script>
<script src="js/lib/jquery-1.6.1.js" type="text/javascript"></script>
<script src="js/lib/ICanHaz.js" type="text/javascript"></script>
<script src="js/app/main2.js" type="text/javascript"></script>
とmain2.jsが含まれています
$(function() {
var introduction_html = ich.introduction();
$('#pm').html(introduction_html.filter('#introduction'));
});
導入テンプレートが見つかりません!それを呼び出す前にich.grabTemplates()を使用しても、動作しません。
どうすればこの問題を解決できますか?
introduction.htmlは含まれています
<html>
<head>
<style type="text/css">
P.submit {text-align: left}
</style>
</head>
<body>
<div id="introduction">
<p>The tool can now guide you, step by step, through this procedure, beginning when you click on the "start" button below.</p>
<form action="">
<p class="submit"><input type="submit" value="Start" /></p>
</form>
</div>
</body>
</html>
がロードされているテンプレートを読み込むために
ich.refresh()
を行い任意のコンソール出力はありますか? –@ThomasClayson、あなたは**私はHAコンセント出力を意味しますか?** – Jakub
エラーが発生します オブジェクト#にはメソッド 'introduction'がありません –
z1naOK9nu8iY5A