我使用以下代码访问IFrame中的复选框元素。由于复选框状态,我希望得到其中一条消息,但它总是响应:"未选中复选框。"我该如何解决这个问题?
(let [a (count x)])
这是main.html的模板:
def main_page():
if request.method == 'GET':
return render_to_response('main.html')
elif request.method == 'POST':
if request.POST.get('checkbox1', False):
return HttpResponse("The check-box is checked.")
else:
return HttpResponse("The check-box is not checked.")
def iFrame():
if request.method == 'GET':
return render_to_response('MyIFrame.html')
elif request.method == 'POST':
return
这是MyIFrame.html的模板:
<form>
<iframe src="MyIFrame.html"></iframe>
<input name="button" type="submit" id="button" value="ok">
</form>