我有這個html代碼片段。我想分析該片段,併發出HTML沒有JavaScript代碼enlive刪除html標籤
<html>
<body>
<div class="content">lorem ipsum</div>
<script src="/js/jquery.js" type="text/javascript"></script>
<script src="/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>
成爲這個
<html>
<body>
<div class="content">lorem ipsum</div>
</body>
</html>
我無法找到enlive輔助函數來移除標籤。
我發現該解決方案感謝您的例子。所以,我寫這篇文章的代碼和JS消失
(html/deftemplate template-about "../resources/public/build/about/index.html"
[]
[:script] (fn js-clear [& args] nil)
)
非常感謝 – calvin91