gpt4 book ai didi

javascript - 如何让 JQuery Mobile/JQuery UI 样式通过 mustache 模板进行

转载 作者:太空宇宙 更新时间:2023-11-04 11:21:30 25 4
gpt4 key购买 nike

我想创建一个具有关联样式的 JQuery Mobile 列表。我没有模板就可以工作。但是,当我尝试在 Mustache 模板中创建相同的列表时,样式在呈现模板时不会执行。我该如何解决这个问题?

这是它的样子: enter image description here

我希望它看起来像底部列表,但通过 Mustache 模板呈现。

页面的所有代码如下:

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

<!-- Include Mustache Templating -->
<script src="JSfiles/mustache.min.js"></script>

<script>
$(function(){
var contentTemplate = $("#template").html();
Mustache.parse(contentTemplate);
var renderedContent = Mustache.render(contentTemplate);
$("#content").html(renderedContent);
})
</script>

</head>
<body>

<div data-role="page" id="pageone">

<div id="content" data-role="main" class="ui-content"></div>

<div data-role="main" class="ui-content">
<ul data-role="listview" data-inset="true">
<li>
<a href="#"><img src="chrome.png"></a>
</li>
<li>
<a href="#"><img src="firefox.png"></a>
</li>
</ul>
</div>
</div>

</body>
</html>


<script id="template" type="x-tmpl-mustache">
<div>
<h2>List With Thumbnails:</h2>
<ul data-role="listview" data-inset="true">
<li>
<a href="#"><img src="chrome.png"></a>
</li>
<li>
<a href="#"><img src="firefox.png"></a>
</li>
</ul>
</div>
</script>

最佳答案

由于页面呈现时您的列表不存在,因此您需要告诉 jQM 增强小部件:

$("#content").html(renderedContent).enhanceWithin();

$("#content").html(renderedContent).find("ul").listview();

关于javascript - 如何让 JQuery Mobile/JQuery UI 样式通过 mustache 模板进行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32730355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com