我有一个jsp
文件,我使用以下 url 发送两个参数。
var url = 'abc_user_history.jsp?where='+where+'&stock_number=' + StockNumber;
window.open(url, 'Special_Value_History','toolbar=no,location=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes,width=1500,height=900');
在这里,我只得到stock_number
, where is always null
... 在我有一些 SQL 查询的地方,例如:
where=where stock_id like '4575%' and stock_name like 'abc%'
在abc_user_history.jsp
我总是有 where as null
。但是我能够获得stock_number
价值。请建议如何将值传递给...