Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
store | 11 | x store | 9 | y verifyEval | storedVars['x']>storedVars['y'] | true
返回假。如果数字的长度相同(例如 9>5),它可以正常工作。似乎是什么问题?
verifyEval似乎使用标准的 Javascript 来表达它,所以应该这样做;
verifyEval
verifyEval | parseInt(storedVars['x']) > parseInt(storedVars['y']) | true