1

我有一个内部带有 WebBrowser 的应用程序:

当我发布我的网页时,我有 javascript 弹出警报/消息框出现在我需要单击“确定”的位置。这是我创建警报的javascript:

    function delete(){
    if (confirm('Are you sure you wish to delete this ?')){
            document.forms.item.action = "edit.asp?action=delete";
            document.forms.item.submit();
        }

    }

我正在寻找一段时间,但还没有找到任何可行的解决方案......

提前感谢您的所有帮助!

4

3 回答 3

1

实现IDocHostShowUI::ShowMessage并显示您自己的对话框,或者只返回 S_OK。

注意:链接已损坏。这里是解决方案的代码:

      IDocHostShowUI = interface(IUnknown)
        ['{c4d244b0-d43e-11cf-893b-00aa00bdce1a}']
        function ShowMessage(hwnd: THandle; lpstrText: POleStr; lpstrCaption: POleStr;
          dwType: longint; lpstrHelpFile: POleStr; dwHelpContext: longint;
          var plResult: LRESULT): HRESULT; stdcall;
      end;

      TShowMessageEvent = function(Sender: TObject; HWND: THandle;
        lpstrText: POleStr; lpstrCaption: POleStr; dwType: Longint; lpstrHelpFile: POleStr;
        dwHelpContext: Longint; var plResult: LRESULT): HRESULT of object;

      TWebBrowser = class(SHDocVw.TWebBrowser, IDocHostShowUI)
        private
          fOnShowMessage: TShowMessageEvent;
        protected
          function ShowMessage(HWND: THandle; lpstrText: POleStr; lpstrCaption: POleStr;
            dwType: Longint; lpstrHelpFile: POleStr; dwHelpContext: Longint;
            var plResult: LRESULT): HRESULT; stdcall;
        published
          property OnShowMessage: TShowMessageEvent read fOnShowMessage write
            fOnShowMessage;
      end;

function TWebBrowser.ShowMessage(HWND: THandle; lpstrText, lpstrCaption: POleStr;
  dwType: Integer; lpstrHelpFile: POleStr; dwHelpContext: Integer;
  var plResult: LRESULT): HRESULT;
begin
  if Assigned(fOnShowMessage) then
    Result := fOnShowMessage(Self, HWND, lpstrText, lpStrCaption, dwType,
      lpStrHelpFile, dwHelpContext, plResult)
  else
  Result:= S_OK;
end;
于 2012-08-10T00:22:51.523 回答
1

如果这是非常受限制的内部使用,你可以做一个肮脏的

procedure TForm1.Timer1Timer(Sender: TObject);
const
  TargetCaption = 'Meddelande från webbsida';
var
  S: string;
  len: integer;
begin
  SetLength(S, 127);
  len := GetWindowText(Application.ActiveFormHandle, PChar(S), 127);
  if len = 0 then Exit;
  SetLength(S, len);
  if S = TargetCaption then
    SendMessage(Application.ActiveFormHandle, WM_COMMAND, ID_OK, 0);
end;

弹出、确认或提示对话框TargetCaption的已知标题在哪里。TWebBrowser这可能因操作系统版本和语言版本而异,因此这种方法仅适用于非常受限的内部应用程序,在这种情况下,可以使用每个新的 Windows SP 来“更新”应用程序......

顺便说一句,“Meddelande från webbsida”在瑞典语中意为“来自网页的消息”。

于 2012-08-09T15:51:27.073 回答
-2

按钮alert() confirm()prompt()框不可编写脚本。请改用 HTML/CSS 模式对话框。

于 2012-08-09T14:33:51.497 回答