在玩弄表格时,我最终得到了它的样子:
<form method="post" enctype="multipart/form-data" action="myscript.py">
<input type="file" id="file-picker" name="picker" autofocus multiple>
<button id="upload-btn" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" role="button" aria-disabled="false">
<span class="ui-button-text">Upload</span>
</button>
</form>
尽管表单没有提交输入元素,但我可以通过单击按钮元素来触发其操作(并运行 myscript.py")。
我没有向按钮元素添加点击处理程序。
我的问题是:表单怎么知道点击上传按钮应该触发提交?