我有一个 XmlElement。我正在对其包含的文本进行字符串比较。无论如何,比较应该通过。直到最近,代码已经成功运行。然而,它现在失败了。
// caller ....
processRow('my title', atag);
...
function processRow(title, rowtag) {
// rowtag.getText() returns the string 'my title'
if (rowtag.getText() == title) {
// ... this section is never entered
在调试模式下,我看到正在比较两个相同的 String 对象。难道我做错了什么?