我不知道如何爲Django編寫JavaScript? 請幫我關於Django Javascript
以下javascript代碼是正確的嗎?
此代碼是在HTML寫: base.html文件: {%負載staticfiles%}
index.html
{% extends "base.html" %}
<html>
<head>
</head>
<body>
<script type="text/javascript">
$(document).ready(function()
{
$("#sampleTable").tablesorter();
);
</script>
<div class="import">
<table id="sampleTable" class="tablesorter">
<thead>
<tr>
<th class="{sorter:'metadata'}" style="width:100px">name</th>
<th class="{sorter:'metadata'}" style="width:260px">company</th>
</tr>
</thead>
</table>
{% if memo.count > 0 %}
{% for user in memo %}
<div><h3>
<table id="sampleTable1" class="tablesorter">
<tbody>
<td style=" border-bottom:1px solid #0099cc; text-align:center;"><a href="/memo/get/{{ user.id }}/">{{ user.user_name }}</a></td>
<td style=" border-bottom:1px solid #0099cc; text-align:center;"><a href="/memo/get/{{ user.id }}/">{{ user.company }}</a></td>
</tbody>
</table>
</div>
</body>
</html>
寫javascript「的Django」是沒有任何不同比寫javascript的任何其他網站。 –
使用JavaScript容易,因爲你在任何HTML文件中使用。但是,您上傳的html代碼中存在一些語法錯誤,{%if%}和{%for%}塊請參閱django模板文檔。 – Prateek
非常感謝!我應該使用{%if%}和{%for%} – vigor100