本文介绍了如何编写prev按钮的代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我设计了一个在线测验。我为一个页面设计了一个问题并保留了下一个和prev按钮如何编写prev按钮的代码意味着它应该重定向到后页并且我点击的选项应该是可见的,意味着它不应该是空的并且再次点击在选项上它将被存储在数据库中,所以当点击prev按钮时,我们可以从数据库中检索数据的可能性。
i m design a online quiz. i have design one question for one page and kept next and prev button how to write the code for prev button means it should redirect to back page and the choice which i have clicked should be visible, means it should not be empty and one more click on the option it wil be stored in the database so while clicking on prev button can we retrive the data from databse how it is possible.
推荐答案
<input type="button" onclick="history.go(-1)" value="Back" />
这就是你所需要的吗?
Is that all you need?
这篇关于如何编写prev按钮的代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!