urls.py包含行:HTML和Django的
url(r'^topics/$', views.topics, name='topics'),
views.py包含代碼:
def topics(request):
context = locals()
return render(request, 'topics.html', context)
以下引導代碼是用來打開 「topics.html」
<p><a class="btn btn-warning" href="/topics/" role="button">More »</a></p>
上面的代碼正確呈現了「topics.html」,它是一個表格。
現在,我想讓光標轉到表格中的特定行(例如:第一行)。
你能再次重複實際問題嗎?我有點困惑,你的意思是'我希望光標移動到表格中的特定行(例如:第一行)。「也許你希望頁面跳轉到加載的部分? – Pogrindis
你的意思是說,在某一行有一個輸入元素,你想開始?你有什麼研究/嘗試過? – Sayse
永遠不會使用'context = locals()'! – doniyor