1
早上好,哪裏可以在我的SPA中添加JQuery Mult Select Script?
我已經開始構建我的第一個單頁應用程序的HTML元素。我需要爲特定的輸入調用JQuery Multi Select。我在我的HTML文件中包含腳本標記。但是,它根本不是渲染。
<script>
$(document).ready(function() {
$("#Sites").multiselect();
});
</script>
<section>
<h2 class="page-title" data-bind="text: title"></h2>
</section>
<section id ="Recipients">
<article>
<div class="row">
<div class="span6">
<label for="Study">Study: </label>
<select data-bind="text: Study" title="Study"></select><br />
<label for="Sites">Sites: </label>
<select data-bind="text: Sites" title="Sites" multiple="multiple" ></select><br />
<label for="Distribution">Distribution: </label>
<input type="checkbox" data-bind="text: Distribution" title="Distribution" />
</div><!-- span6 -->
</div><!-- row -->
<div class="row">
<div class="span6">
<label for="Recipients">Recipients: </label>
<input type="checkbox" data-bind="text: Recipients" title="Recipients"/><br />
</div><!-- span8 -->
</div><!-- row -->
</article>
</section>
<section id ="Communication">
<article>
<label for="SendFrom">Send From: </label>
<label id="SendFrom"></label><br />
<label for="Subject">Subject: </label>
<input id="Subject" /><br />
</article>
</section>
我將script標籤放在正確的文件中嗎?它應該在我的home.js文件嗎? HTML文件是否需要引用附加的樣式表和JavaScript文件,或者Durandal/KO是否在幕後處理?