IE上のhref = "Javascript: のクリック

最近の書き込み件数: 今日 0件、昨日 0件
未読分:4件

最新20件 最新50件 最新100件 最新200件 200件以前
昨日以降(0) 2日前以降(0) 3日前以降(0) 4日前以降(0) 5日前以降(0)


Excel VBAでIEを思いのままに操作できるプログラミング術 Excel 2013/2010/2007/2003対応

近田 伸矢, 植木 悠二, 上田 寛

IEのデータ収集&自動操作のプログラミング本はこの1冊だけ!IEの起動やポップアップウィンドウ、表示を制御する基本的なコードはもちろん、テキストボックスやラジオボタン、表、ハイパーリンクなどのHTML部品を制御する方法など、自動操作に欠かせないノウハウを丁寧に解説。

Message#4 2019年12月12日(木)08時41分
From: vbavbavba
返事 削除 変更
VBEのウォッチでオブジェクトつかめているか、要素があるか確認したらどうですか?

> vbavbavbaのメッセージ(#2)への返事
>
> 何も変わらず、変化なしです。
>
>
> > 表示までできているんなら、クリックでいかないですか?
> > htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201").Click
> >
> > > お世話になります。
> > > 以下をクリックしたいのですが…
> > >
> > > <A onmouseup=mouseUp(event); onclick="return false;" tabIndex=1 onkeypress=keyPress(event); onmousedown="mouseDown(event); return false;" onfocus=lbF(this) onblur=lbB(this) id=dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201 style="FONT-SIZE: 14pt; FONT-WEIGHT: bold" href="javascript:__doPostBack('dlRepeat$ctl00$tpItem$dgTable$ctl15$b20191201','')">抽選</A>
> > >
> > > 上記は
> > > Dim Chusens As Variant
> > > Set Chusens = htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201")
> > > Debug.Print Chusens.outerHTML
> > >
> > > でイミディエイトウインドウに表示まで、できています。
> > >
> > > ちなみにhref = のJavascriptは
> > >
> > > <script type="text/javascript">
> > > //<![CDATA[
> > > var theForm = document.forms['Form1'];
> > > if (!theForm) {
> > > theForm = document.Form1;
> > > }
> > > function __doPostBack(eventTarget, eventArgument) {
> > > if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
> > > theForm.__EVENTTARGET.value = eventTarget;
> > > theForm.__EVENTARGUMENT.value = eventArgument;
> > > theForm.submit();
> > > }
> > > }
> > > //]]>
> > > </script>
> > >
> > > よろしくお願いします。

Message#3 2019年12月5日(木)19時16分
From: oldmac
返事 削除 変更
vbavbavbaのメッセージ(#2)への返事

何も変わらず、変化なしです。


> 表示までできているんなら、クリックでいかないですか?
> htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201").Click
>
> > お世話になります。
> > 以下をクリックしたいのですが…
> >
> > <A onmouseup=mouseUp(event); onclick="return false;" tabIndex=1 onkeypress=keyPress(event); onmousedown="mouseDown(event); return false;" onfocus=lbF(this) onblur=lbB(this) id=dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201 style="FONT-SIZE: 14pt; FONT-WEIGHT: bold" href="javascript:__doPostBack('dlRepeat$ctl00$tpItem$dgTable$ctl15$b20191201','')">抽選</A>
> >
> > 上記は
> > Dim Chusens As Variant
> > Set Chusens = htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201")
> > Debug.Print Chusens.outerHTML
> >
> > でイミディエイトウインドウに表示まで、できています。
> >
> > ちなみにhref = のJavascriptは
> >
> > <script type="text/javascript">
> > //<![CDATA[
> > var theForm = document.forms['Form1'];
> > if (!theForm) {
> > theForm = document.Form1;
> > }
> > function __doPostBack(eventTarget, eventArgument) {
> > if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
> > theForm.__EVENTTARGET.value = eventTarget;
> > theForm.__EVENTARGUMENT.value = eventArgument;
> > theForm.submit();
> > }
> > }
> > //]]>
> > </script>
> >
> > よろしくお願いします。

Message#2 2019年11月29日(金)16時42分
From: vbavbavba
返事 削除 変更
表示までできているんなら、クリックでいかないですか?
htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201").Click

> お世話になります。
> 以下をクリックしたいのですが…
>
> <A onmouseup=mouseUp(event); onclick="return false;" tabIndex=1 onkeypress=keyPress(event); onmousedown="mouseDown(event); return false;" onfocus=lbF(this) onblur=lbB(this) id=dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201 style="FONT-SIZE: 14pt; FONT-WEIGHT: bold" href="javascript:__doPostBack('dlRepeat$ctl00$tpItem$dgTable$ctl15$b20191201','')">抽選</A>
>
> 上記は
> Dim Chusens As Variant
> Set Chusens = htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201")
> Debug.Print Chusens.outerHTML
>
> でイミディエイトウインドウに表示まで、できています。
>
> ちなみにhref = のJavascriptは
>
> <script type="text/javascript">
> //<![CDATA[
> var theForm = document.forms['Form1'];
> if (!theForm) {
> theForm = document.Form1;
> }
> function __doPostBack(eventTarget, eventArgument) {
> if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
> theForm.__EVENTTARGET.value = eventTarget;
> theForm.__EVENTARGUMENT.value = eventArgument;
> theForm.submit();
> }
> }
> //]]>
> </script>
>
> よろしくお願いします。

Message#1 2019年11月3日(日)20時45分
From: oldmac
返事 削除 変更
お世話になります。
以下をクリックしたいのですが…

<A onmouseup=mouseUp(event); onclick="return false;" tabIndex=1 onkeypress=keyPress(event); onmousedown="mouseDown(event); return false;" onfocus=lbF(this) onblur=lbB(this) id=dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201 style="FONT-SIZE: 14pt; FONT-WEIGHT: bold" href="javascript:__doPostBack('dlRepeat$ctl00$tpItem$dgTable$ctl15$b20191201','')">抽選</A>

上記は
Dim Chusens As Variant
Set Chusens = htmlDoc.getElementById("dlRepeat_ctl00_tpItem_dgTable_ctl15_b20191201")
Debug.Print Chusens.outerHTML

でイミディエイトウインドウに表示まで、できています。

ちなみにhref = のJavascriptは

<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['Form1'];
if (!theForm) {
theForm = document.Form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>

よろしくお願いします。

最新20件 最新50件 最新100件 最新200件 200件以前
昨日以降 2日前以降 3日前以降 4日前以降 5日前以降

VBAのIE制御についてのQ&A掲示板

↑エクセルVBAのIE(InternetExplorer)操作で分からない事があればこちらの掲示板よりご質問ください^^

ExcelのVBA初心者入門

↑こちらはExcelのVBAをマスターできるよう初心者向けのエクセルVBA入門コンテンツになります^^

VBAのIE制御入門RSS

RSSフィードを登録すると最新記事を受け取ることができます。

VBAIE操作のスカイプレッスン

VBAでIE(InternetExplorer)制御の準備

エクセルVBAでIE制御の応用編

こちらでは、エクセルVBAで実際に作成したIE(InternetExplorer)制御ツールをまとめています。自動ログインや情報収集など具体的に解説しています。IE(InternetExplorer)制御をされる方は参考にしてください。

【ダウンロード】IE操作に便利なツール

こちらでは、これまでに紹介したIE(InternetExplorer)操作で便利な機能をツール化しています。無償でダウンロードできますので、目的に合わせたご利用ください。

IEオブジェクトのメソッド・プロパティ

こちらでは、IE(InternetExplorer)オブジェクトのメソッド・プロパティをまとめています。

IE操作に利用されているVBA関数

こちらでは、エクセルVBAのIE(InternetExplorer)操作で利用されたVBA関数をまとめています。

IE操作に利用されているステートメント

こちらでは、エクセルVBAのIE(InternetExplorer)操作で利用されたステートメントをまとめています。ExcelのVBAで基本的な部分になりますので、しっかり理解しましょう。

IE(InternetExplorer)制御のVBAコード

こちらでは、これまでに作成したIE(InternetExplorer)操作で役立つサブルーチンをまとめています。
全てをコピーする必要はありませんが、目的に合わせたサブルーチンをご利用ください。

ExcelのVBAで作成した役立つVBAコード

こちらでは、IE(InternetExplorer)制御の利用だけでなく、Excel全般で利用できるVBAコードです。エクセルVBAで役に立つものばかりですので、ご利用ください。

dmb.cgi Ver. 1.068
Copyright(C) 1997-2014, hidekik.com