如何使用 runscript 命令中的变量
我从网页上获取一些文本 5,19 € 3,50 € 我想在“€”之后分割此文本。为此,我
runScript | javascript{var prices = storedVars['price'].split("€"); document.write(prices[0]); document.write(prices[1])};
在尝试此命令后
getEval | alert(storedVars['prices[0]'])
使用此命令,答案是价格未定义。 这里有什么问题吗?如何从 runScript 命令获取此变量?
谢谢你帮助我!
I get some text from a web page 5,19 € 3,50 €
I want to split this text after "€". for that I'm using this command
runScript | javascript{var prices = storedVars['price'].split("€"); document.write(prices[0]); document.write(prices[1])};
after done that try this command
getEval | alert(storedVars['prices[0]'])
the answer is that prices is undefined.
what is the problem here? how can I get this variable from a runScript command?
thanks for helping me!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
storeEval
代替。Try using
storeEval
instead.