使用django将值从html传递给python

时间:2013-07-25 10:18:22

标签: python html django url

我有一个由表格组成的html页面。我需要的是每当用户点击任何一个单元格时,将单元格的id发送到python: 这是我现在使用的代码:

############

html文件:(search.html)

<body>


<button type="button" action="/hello/" onclick="/hello/">Try it</button>
<table width="1000" table border="3">
<tr>
<td ><div id="0" onClick="parent.location='{% url "view.search :request,454 "  %}'">Copy Text</div></td>
<td>hell</td>
</tr>
<tr>
<td ><div id="1" onclick="copyText(id)">Copy Text</div></td>
<td>hell</td>
</tr>
<tr>
<td ><div id="2" onclick="copyText(id)">Copy Text</div></td>
<td>hell</td>
</tr>
<table>
</body>
##########在django中的python视图文件:
def search(request,c):
    print "clicked"
    print c        
    return render(request, 'search.html')

0 个答案:

没有答案