当前位置:Gxlcms > PHP教程 > 登记页面对应的函数得不到文本控件的值

登记页面对应的函数得不到文本控件的值

时间:2021-07-01 10:21:17 帮助过:20人阅读

注册页面对应的函数得不到文本控件的值
注册页面对应的函数:

$.post('{:U("Register/register")}', $('#register'), function(str) { // .serialize()


RegisterAction.class.php 中:

//注册
public function register() {
$data['u_username'] = strtolower(I('name', '', 'trim'));
$data['u_phone'] = I('phone', '', 'trim');
$data['u_email'] = I('email', '', 'trim');
$data['u_password'] = I('pass');
$data['repassword'] = I('rpass');
$rpass = I('rpass');
... ...

这几个变量得到的值都是空的,为什么呢?

在register模板文件中,

if (email === 0 || phone === 0 || code === 0 || username === 0 || password === 0 || rpassword === 0) {
...

这几个email等变量的值都是0


if (document.getElementById("email").value === 0 || document.getElementById("phone").value === 0 || document.getElementById("code").value === 0 || document.getElementById("username").value === 0 || document.getElementById("password").value === 0 || document.getElementById("rpassword").value === 0) {

改成这样就都取到各个文本框控件的值了。

文本框代码:



------解决思路----------------------
如果 register 是表单的id
那么
$.post('{:U("Register/register")}', $('#register') .serialize(), function(str) { .......

------解决思路----------------------
关注,友情帮顶!
------解决思路----------------------
print_r(json_decode(' {"info":"\u9a8c\u8bc1\u7801\u8f93\u5165\u9519\u8bef!","status":0,"url":""}'));

stdClass Object
(
[info] => 验证码输入错误!
[status] => 0
[url] =>
)

你没按规矩来!

人气教程排行