wangmeng814 发表于 2009-8-3 16:02:14

求助,高手来给一段标准代码

我从HELP文档里找到 WEB_REG_FIND的一个用法
In the following example,web_reg_findfunction searches for the text string "ABC". If the string is not found, the script. executesAction A. If the string is found one or more times, it executesAction B.

web_reg_find("Text=ABC", "SaveCount=abc_count", LAST);
web_url("Step", "URL=...", LAST);
if (strcmp(lr_eval_string("{abc_count}"), "0") == 0)
Action A
else
Action B

但是 调用ACTION A和 ACTION B 该怎么写?像它写得这么简单 直接就写上ACTION的名字 报错的。 求高手给一段 执行ACTION的代码!

sunhope800 发表于 2009-8-13 15:28:12

路过,顶一下!

alexanty 发表于 2009-9-4 00:03:47

学习中,。,。,

kuangquanshui 发表于 2009-9-4 09:44:45

:L

mball 发表于 2009-9-4 10:36:25

顶了~~等高手来~

lampson_82 发表于 2009-9-4 11:55:49

web_reg_find("Text=ABC", "SaveCount=abc_count", LAST);
web_url("Step", "URL=...", LAST);
if (strcmp(lr_eval_string("{abc_count}"), "0") == 0)
    Action A();
else
   Action B();

xiaoy035 发表于 2009-9-4 21:24:31

:o
页: [1]
查看完整版本: 求助,高手来给一段标准代码