在django中引入jquery的方法:1.下载jquery源文件;2.新建static文件,并将jquery源文件剪切到该文件;3.配置settings.py文件;4.使用script标签引入jquery;
具体步骤如下:
首先,进入jquery官网,下载jquery源文件;
源文件下载好后,在django根目录中新建一个static文件,并将jquery源文件剪切到该文件中;
jquery源文件剪切好后,在settings.py文件中进行以下配置;
STATICFILES_DIRS = (
os.path.join(os.path.dirname(__file__), '..', 'static').replace('\\','/'),
os.path.join('static'),
)
最后,settings.py文件配置好后,使用script标签即可引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>