WMLScript abort() 函数

abort() 函数中止 WMLScript,并向该脚本的调用者返回一条消息。

语法

  1. Lang.abort(text)
成分 描述
text 一个字符串。

例子

  1. var errtxt = "Illegal value";
  2. Lang.abort("Error in function: " + errtxt);

结果

  1. The script is aborted, and the string "Error in function: Illegal value"
  2. is returned to the caller of the script.