我需要在django中包含我的JavaScript文件。我知道如何包含CSS文件。我是这样做的:
<link rel="stylesheet" href="{% static 'demo/style.css' %}"/>
如何添加我的JavaScript文件?
答案 0 :(得分:7)
有两种方法(内联脚本和外部脚本):
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test page</title>
</head>
<body>
Inline script (option 1):
<script>
// your js code here
</script>
External script (option 2):
<script src="your-code-file.js"></script>
</body>
</html>
您可能对此感兴趣:
<script src="your-code-file.js"></script>
答案 1 :(得分:4)
我知道如何包含CSS文件。 [...]如何包含我的javascript文件?
一个明显的答案是“管理same way as other static files。然后使用script
元素包含它,就像使用任何JavaScript文件一样“。
如果你已经尝试过这个或其他内容,请将问题编辑到say what you tried and what happened instead。