在 Delphi 中調用 JavaScript(2)

來源:互聯網
上載者:User
本例:


代碼檔案:
unit Unit1;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs, StdCtrls;type  TForm1 = class(TForm)    Memo1: TMemo;    Button1: TButton;    Edit1: TEdit;    Label1: TLabel;    procedure Button1Click(Sender: TObject);  end;var  Form1: TForm1;implementation{$R *.dfm}uses ComObj;{此函數需要 ComObj 單元的支援}{參數 JsCode 是要執行的 Js 代碼; 參數 JsVar 是要返回的變數}function RunJs(const JsCode, JsVar: string): string;var  script: OleVariant;begin  try    script := CreateOleObject('ScriptControl');    script.Language := 'JavaScript';    script.ExecuteStatement(JsCode);    Result := script.Eval(JsVar);  except    Result := '';  end;end;procedure TForm1.Button1Click(Sender: TObject);var  s: string;begin  s := RunJs(Memo1.Text, 'str');  ShowMessage(s);end;end.

表單檔案:

object Form1: TForm1  Left = 0  Top = 0  Caption = 'Form1'  ClientHeight = 167  ClientWidth = 244  Color = clBtnFace  Font.Charset = DEFAULT_CHARSET  Font.Color = clWindowText  Font.Height = -11  Font.Name = 'Tahoma'  Font.Style = []  OldCreateOrder = False  Position = poDesktopCenter  PixelsPerInch = 96  TextHeight = 13  object Label1: TLabel    Left = 10    Top = 140    Width = 72    Height = 13    Caption = #35201#36820#22238#30340#21464#37327  end  object Memo1: TMemo    Left = 0    Top = 0    Width = 244    Height = 121    Align = alTop    Font.Charset = DEFAULT_CHARSET    Font.Color = clWindowText    Font.Height = -13    Font.Name = 'Courier New'    Font.Style = []    Lines.Strings = (      'Memo1')    ParentFont = False    ScrollBars = ssBoth    TabOrder = 0    ExplicitWidth = 323  end  object Button1: TButton    Left = 159    Top = 134    Width = 75    Height = 25    Caption = #25191#34892#20195#30721    TabOrder = 1    OnClick = Button1Click  end  object Edit1: TEdit    Left = 85    Top = 136    Width = 61    Height = 21    TabOrder = 2    Text = 'str'  endend
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.