写法改一下
————————————————
var a = this.options.form.getWidgetByName(“T1").getValue();
var b = this.options.form.getWidgetByName(“T2").getValue();
if(a == b)
{alert("相同");}
else
{alert("不相同");}
alert 一下这两个值,看看分别是什么,是不是就是不同。
你可以使用参数把那两个值都alert一下的
var temp1 = ...(你要比较的值)
var temp2 = ...(你要比较的值)
alert(temp1);
alert(temp2);