计算
相关项: GUI 操作、脚本化 GUI 组件和函数库
可以使用数学运算符编写执行简单计算的语句。例如,可以使用乘运算符将网站上两个文本框中显示的值相乘。VBScript 支持以下数学运算符:
运算符 |
描述 |
---|---|
+ |
加 |
– |
减 |
– |
求反 (负数) |
* |
乘 |
/ |
除 |
^ |
指数 |
在以下示例中,乘法运算符用于计算三个扬声器的总价格:
'Retrieves the price of a speaker using the GetROProperty method
Price = Browser("Advantage Shopping").Page("Advantage Shopping").WebElement("$44.99").GetROProperty("innertext")
'Multiplies the price by 3
Total price = Price * 3
'Inserts the total price into a message box
msgbox("The total price is "& total price.")