JavaScript小记
<input type="button" value="测试2" onclick="location='ok.jsp'">
会转到ok.jsp页面,其中location='ok.jsp'等价于:location.href='ok.jsp'也等价于:window.location.href='ok.jsp';<a href="cart!delete.action?id=${item.product.id}" onclick="return confirm('确定从购物车移除吗?')">删除</a>
先执行onclick,如果onclick返回的是确定,则执行链接,如果返回取消则不执行。<a href="#" onclick="var n=document.getElementById('num_${item.product.id}').value;window.location.href='cart!update.action?id=${item.product.id}&number='+n" >变更</a>
此处应该注意标点符号和onclick有两条语句