我正在尝试使用codeigniter和jquery构建一个登录表单,当客户端提交表单时我试图做的是jquery在传递和参数ENCRYPTEDwindow.location
时更改调用验证函数controllers
username
password
这是我的代码
window.location.href = "/resturant/codeigniter/index.php/welcome/checklogin/" +
<?php $this->load->library('encrypt');
echo $this->encrypt->encode("$('#username').val()"); ?> +
"/" + $("#password").val();
此代码不起作用。
我的问题是,这就是我们加密参数并通过 url 传递它们的方式吗?
更新
以下代码工作正常:
window.location.href = "/resturant/codeigniter/index.php/welcome/checklogin/" +
<?php echo "$('#username').val()"; ?> + "/" + $("#password").val();