我正在使用一个简单的html按钮来提交数据。我正在使用codeigniter框架。以下代码是我的按钮,用于cacel页面并返回上一页。
<input type="button" value="Cancel" onclick="" class="cancel_button">
当我点击取消按钮时,它应该转到以下网址
http://localhost/sample/categorycontroller/index
请告诉我,如何通过按钮传递网址。?
提前致谢
答案 0 :(得分:2)
试试这个:
<input type="button" value="Cancel" onclick="window.location = 'http://localhost/sample/categorycontroller/index'" class="cancel_button">
答案 1 :(得分:0)
请用户:
<input type="button" value="Cancel" onclick="window.location.href = 'http://localhost/sample/categorycontroller/index'" class="cancel_button">
答案 2 :(得分:0)
<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>