我在下面设置了一个表单,其中有两个输入关键字和最低价格
<form name="Data" method="GET" action="#">
<table cellpadding="2" border="0">
<tr>
<th>Keywords</th>
<th>Min Price</th>
</tr>
<tr>
<td><input type="text" name="keywords" id="keywords"/></td>
<td><input type="text" name="MinPrice" id="MinPrice"/></td>
</tr>
<tr>
<td colspan="2" align="center"><INPUT type="submit" name="submit" value="Search">
</td>
</tr>
</table>
</form>
然后获得的结果需要进入一个javascript,然后应该根据变量返回结果。JS 在没有变量的情况下工作,即只是将它们放入代码中,但我不知道如何引用上面的表单然后将代码作为一个整体提交
html.push('</tbody></table>');
document.getElementById("results").innerHTML = html.join("");
}
var filterarray = [
{"name":"MaxPrice",
"value":"1000",
"name":"MinPrice",
"value":Variable here!!,
"paramName":"Currency",
"paramValue":"GBP"},
以上是脚本的一部分,其中一个值将出现
任何帮助 apreciated ps 完整的新手所以慢慢来