0
Q
隱藏模板代碼
A
回答
0
$.template('yourTemplateName', 'yourTemplateCode');
從http://api.jquery.com/jQuery.template/
這種方法編譯模板參數作爲命名模板,可以使用在名稱參數指定的字符串中引用的標記。
返回值是編譯模板函數。
舉例:創建一個名爲「summaryTemplate」相關的編譯模板,然後按名稱進行渲染引用它:
// Convert the markup string into a named template
$.template("summaryTemplate", "<li>${Name}</li>");
function renderList() {
// Render the movies data using the named template: "summaryTemplate"
$.tmpl("summaryTemplate", movies).appendTo("#moviesList");
}
相關問題
- 1. c#代碼隱藏的數據模板
- 2. 項目模板代碼隱藏
- 3. 如何將代碼隱藏代碼添加到umbraco模板?
- 4. 代碼隱藏
- 5. 故事板 - 從代碼隱藏
- 6. JavaScript代碼隱藏和顯示面板
- 7. 代碼隱藏代碼
- 8. 編譯並隱藏頁面源代碼中的AngularJs模板
- 9. C++ - 從客戶端代碼隱藏模板參數
- 10. 訪問Silverlight控件模板項目代碼隱藏
- 11. 獲取代碼隱藏公共串入LayoutTemplate模板的ListView
- 12. 在代碼隱藏
- 13. XAML代碼隱藏
- 14. 隱藏在代碼
- 15. 隱藏源代碼
- 16. 隱藏java代碼
- 17. 隱藏Python代碼
- 18. 從代碼隱藏
- 19. WPF代碼隱藏
- 20. 從代碼隱藏
- 21. 從代碼隱藏
- 22. 在代碼隱藏
- 23. 從代碼隱藏
- 24. Xamarin代碼隱藏
- 25. 表代碼隱藏
- 26. 從代碼隱藏
- 27. 在代碼隱藏
- 28. 從代碼隱藏
- 29. 在代碼隱藏
- 30. 從代碼隱藏
喔感謝....我想我應該考慮RTFM .. 。 – Jan