我想使用<button>
代码重定向到某个网页..但是,它无效
<?php $url2 = "mission_schedule.php?id=" . urlencode($_GET['id']);?>
<!-- this is not working -->
<button onclick=location.href='<?php echo $url2; ?>'; >Next</button>
<!-- this is working -->
<a href="<?php echo $url2;?>">Next</a>
点击该按钮会重新加载同一页面..点击该链接会将我重定向到右侧页面 此外,此按钮通常适用于其他页面
答案 0 :(得分:0)
缺少双引号:
<button onclick="location.href='<?php echo $url2; ?>';">Next</button>