c
有人可以解决我的问题吗? 最好的问候,
答案 0 :(得分:0)
就这样。
{% import "my_macro.html" as mm %}
<!DOCTYPE html>
<html lang="en">
<head>
{% block jquery %}
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script >
document.addEventListener('DOMContentLoaded', function () {
var width = window.innerWidth;
if (width > 540) {
$("#mobile").html({{mm.main() | tojson}});
} else {
$("#desktop").html({{mm.main() | tojson}});
}
});
</script>
{% endblock %}
</head>
<body>
<div id="mobile">
// Mobile //
</div>
<div id="desktop">
// Desktop //
</div>
</body>
</html>