相同的脚本有2个不同的结果。当我写4位数。我收到这个错误。 可能出错的地方。
var win = new Window('dialog', "Example");
win.size = [280,200];
var columns = win.add("group"); columns.spacing=5;
var width = columns.add('edittext {text: "", characters: 5, justify: "center"}');
var length = columns.add('edittext {text: "", characters: 5, justify: "center"}');
var height = columns.add('edittext {text: "", characters: 5, justify: "center"}');
width.active = true;
var grp = win.add('group');
var ok = grp.add('button {text: "OK"}')
grp.add('button {text: "Cancel"}');
var doBox = function(){
var box1=width.text;
var box2=length.text;
box1=width.text;
box2=length.text;
if (box1>box2)
alert("You have entered a big number in the 1st box !");
else
alert("Ok");
}
ok.onClick = doBox;
win.show();
答案 0 :(得分:0)
请参阅this answer,了解为何会发生这种情况。要更正此问题,您可以使用 parseInt 方法。要做到这一点,只需更改这些行
box1=width.text;
box2=length.text;
到
box1=parseInt(width.text);
box2=parseInt(length.text);