我想在JSP中向URL添加两个变量
<a href="buyOrSell.do?symbol=<%=trade.getSymbol()%>&mktPrice="<%=trade.getCurrentMktPrice()%>>Buy</a>
例如-http://loclhost:8080/myProj/buyOrSell.do?symbol=anySymbol&mktPrice=price
但我不能得到第二个变量。
最佳答案
好像你的代码中有个引号放错了。改为测试下面的行
<a href="buyOrSell.do?symbol=<%=trade.getSymbol()%>&mktPrice=<%=trade.getCurrentMktPrice()%>">Buy</a>