两个按钮一个窗体

Two buttons one form

本文关键字:一个 窗体 两个 按钮      更新时间:2023-09-26
<?=form_open('blog/register');?> 
            <table>
                <tr>
                    <td><label for="register_name">Username : </label></td>
                    <td><input type="text" name="register_name" readonly="readonly" value="<?=$_POST['username']?>"/></td>                    
                </tr>
                <tr>
                    <td><label for="register_email">Email:</label></td>
                    <td><input type="text" name="register_email" readonly="readonly" value="<?=$_POST['email']?>"/></td>                
                </tr>                
                <tr>
                    <td><label for="register_password">Password:</label></td>
                    <td><input type="password" name="register_password" readonly="readonly" value="<?=$_POST['password']?>"/></td>                
                </tr>               
                <tr>
                    <td></td>
                    <td><input type="submit" value="Register" onclick="return true;"/></td>
                </tr>
                <tr>
                    <td></td>
                    <td>                     
                        <input type="button" value="Edit" onclick="window.location.replace('http://localhost/index.php?username='<?=$_POST['username']?>'&email='<?=$_POST['email']?>');return true;"/>
                    </td>
                </tr>
            </table>
        <?=form_close()?>

这是带有两个按钮作为两个选项的表单,"注册"按钮用于将用户重定向到注册屏幕,而第二个按钮会将用户定向到登录屏幕。它不起作用,有人可以给我一个提示或任何说明吗?

我单击第二个按钮,没有任何反应。第一个按钮工作正常

尝试替换

<input type="button" value="Edit" onclick="window.location.replace('http://localhost/index.php?username='<?=$_POST['username']?>'&email='<?=$_POST['email']?>');return true;"/>

<input type="button" value="Edit" onclick="window.location.href = 'http://localhost/index.php?username=<?=$_POST['username']?>&email=<?=$_POST['email']?>';return true;"/>

我相信你有一些引号混淆了。

为了澄清,我删除了 php 周围的单引号,因为我认为它们不是必需的,并在您不想要的地方切断了您的位置字符串。代码生成的位置字符串为 'http://localhost/index.php?username=' ,这是不正确的。

更新
replace()更改为href

替换代码

 <input type="button" value="Edit" onclick="window.location.replace('http://localhost/index.php?username='<?=$_POST['username']?>'&email='<?=$_POST['email']?>');return true;"/>

<input type="button" value="Edit" onclick="window.location.replace('http://localhost/index.php?username=<?=$_POST['username']?>&email=<?=$_POST['email']?>');return true;"/>