웹 페이지의 모든 요소를 MSHTML로 제어하기(delphi 코드)
3546 단어 Delphi
procedure TForm1.Button1Click(Sender: TObject);
var
Doc:IHTMLDocument2;
input:OleVariant;
userinputelement,pwdinputelement:ihtmlinputelement;
begin
doc:=webbrowser1.document as ihtmldocument2;
userinputelement:=(doc.all.item('user'( ),0) as ihtmlinputelement);
userinputelement.value:=edit1.text;( )
pwdinputelement:=(doc.all.item('password',0) as ihtmlinputelement);
pwdinputelement.value:=edit2.text;
input:=doc.all.item('submit',0);
input.click;
end;
데이터 제출 버튼에 NAME 속성이 없으면 다음과 같이 하십시오.
procedure TForm1.Button1Click(Sender: TObject);
var
Doc:IHTMLDocument2;
form:ithmlformelement;
userinputelement,pwdinputelement:ihtmlinputelement;
begindoc:=webbrowser1.document as ihtmldocument2;userinputelement:=(doc.all.item('user'(즉 웹 페이지의 사용자 이름 컨트롤의 이름), 0)as ihtmlinputelement);userinputelement.value:=edit1.text;(즉 웹 페이지에 입력할 것) pwdinputelement: = (doc.all.item('password', 0)as ihtmlinputelement);pwdinputelement:=edit2.text;form:=(doc.all.item('login_form',0) as ihtmlformelement):form.submit;end; 현재 페이지가 프레임 페이지인 경우 다음 방법을 사용합니다.
procedure TForm1.Button1Click(Sender: TObject);
var
doc2:IHTMLDocument2;
o : Olevariant;
ole_index: OleVariant;
frame_dispatch: IDispatch;
frame_win: IHTMLWindow2;
frame_doc: IHTMLDocument2;
begin
begin
doc2 := WebBrowser1.Document as IHTMLDocument2;
ole_index:=0;
frame_dispatch := doc2.Frames.Item(ole_index);
if frame_dispatch <> nil then
begin
frame_win := frame_dispatch as IHTMLWindow2;
frame_doc := frame_win.document;
// memo1.lines.add(IHTMLDocument2(frame_doc).body.outerHTML);
End;
end;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.