代码点火器链接到另一个视图的按钮不起作用


Codeigniter link button to another view not working?

<button onclick="location.href='<?php echo base_url();?>Guesser/guess'">Start!</button>

只显示一个空的网页,其中关于:空白作为网址

试试这个:

<input type="button" onclick="location.href='<?php echo base_url();?>Guesser/guess'" value="Start!">