我正在使用一个简单的 html 按钮来提交数据。我正在使用 codeigniter 框架。以下代码是我用于取消页面并返回上一页的按钮。
<input type="button" value="Cancel" onclick="" class="cancel_button">
当我单击取消按钮时,它应该转到以下网址
http://localhost/sample/categorycontroller/index
请告诉我,如何通过按钮传递网址。?
提前致谢
尝试这个:
<input type="button" value="Cancel" onclick="window.location = 'http://localhost/sample/categorycontroller/index'" class="cancel_button">
<input type="button" value="Cancel" onclick="goBack()" class="cancel_button">
然后创建一个名为goBack()
<script type="text/javascript">
function goBack() {
window.location = 'http://localhost/sample/categorycontroller/index';
}
</script>
请使用这个:
<input type="button" value="Cancel" onclick="window.location.href = 'http://localhost/sample/categorycontroller/index'" class="cancel_button">