我正在尝试使用cURL从命令行填充html字段。 我试图修改的页面的html代码是:
<tr>
<td width="27%" class="vncellt">Device's Name</td>
<td width="73%" class="vcell">
<form id="form1" method="post" action="/cfgsvr">
<input id="SA_svrname" size="40" maxlength="40"/>
<input type="text" style="display:none"/>
<input type="button" class="formbtn" value="Set" onclick="makeRequest(form1)"/>ev
</form>
</td>
</tr>
&#13;
我尝试过多种变体: 卷曲 - 形成&#34; SA_svrname = roflkopter&amp; press = Set&#34; http://10.1.100.190/sysinfo.html 无济于事...... 我做错了什么?
答案 0 :(得分:0)
您可能希望发布到表单发布到的同一页面?
curl --data "SA_svrname=roflkopter&press=Set" http://10.1.100.190/cfgsvr
我相信您示例中的表单缺少输入字段的名称参数