按钮onclick location.href不起作用

时间:2018-04-06 18:49:52

标签: php

我想使用<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>

点击该按钮会重新加载同一页面..点击该链接会将我重定向到右侧页面 此外,此按钮通常适用于其他页面

1 个答案:

答案 0 :(得分:0)

缺少双引号:

<button onclick="location.href='<?php echo $url2; ?>';">Next</button>