java js 怎么判断文本框输入的内容
this.textField=newccui.TextField();//定义一个文本框this.textField.setMaxLengthEnabled(true);...
this.textField = new ccui.TextField(); //定义一个文本框
this.textField.setMaxLengthEnabled(true); //设置电脑长度的使用
this.textField.setMaxLength(10); //文本框内可输入多少东西
this.textField.setTouchEnabled(true); //设置触摸启用
this.textField.fontName = "Arial"; //字体
this.textField.fontSize = 40; //字体大小
this.textField.placeHolder = "账号"; //文本框内背景字
this.textField.setTextColor(0,1,0); //字体颜色
this.textField.x = this.frame.width / 2; //X轴坐标
this.textField.y = this.frame.height / 2; //Y轴坐标
this.textField.addEventListener(this.textFieldEvent, this); //监听事件 文本框事件
this.frame.addChild(this.textField);
switch (type) {
case ccui.Widget.TOUCH_ENDED:
cc.log("点击了登录");
if() {
cc.log("成功进入游戏");
this.frame.setVisible(false);
cc.director.runScene(new xxy());
}
else{
cc.log("账号密码错误");
}
break;
default:
break;
};
我定义了文本框,现在想点击按钮的时候判断用户输入的内容为123456,才可以成功进入到游戏,if的判断条件是什么?新手求告知啊! 展开
this.textField.setMaxLengthEnabled(true); //设置电脑长度的使用
this.textField.setMaxLength(10); //文本框内可输入多少东西
this.textField.setTouchEnabled(true); //设置触摸启用
this.textField.fontName = "Arial"; //字体
this.textField.fontSize = 40; //字体大小
this.textField.placeHolder = "账号"; //文本框内背景字
this.textField.setTextColor(0,1,0); //字体颜色
this.textField.x = this.frame.width / 2; //X轴坐标
this.textField.y = this.frame.height / 2; //Y轴坐标
this.textField.addEventListener(this.textFieldEvent, this); //监听事件 文本框事件
this.frame.addChild(this.textField);
switch (type) {
case ccui.Widget.TOUCH_ENDED:
cc.log("点击了登录");
if() {
cc.log("成功进入游戏");
this.frame.setVisible(false);
cc.director.runScene(new xxy());
}
else{
cc.log("账号密码错误");
}
break;
default:
break;
};
我定义了文本框,现在想点击按钮的时候判断用户输入的内容为123456,才可以成功进入到游戏,if的判断条件是什么?新手求告知啊! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询