1

link.php がロードされたとき、4 秒後にフレーム 1 の自動クリック イベントを作成したいと考えています。Link.php の私のコードは

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Source</title>
<script type='text/javascript' src="js/jquery-1.5.2.min.js"></script>
<script type='text/javascript'>//<![CDATA[ 
$(window).load(function(){
$(function() {
    $('[alt="Skip"]').click(function(){});
    setTimeout(function(){$('[alt="Skip"]').trigger('click');}, 4e3);
});
});//]]>  
</script>
</head>
<frameset rows="200px,*" style="width:100%">
        <frame src="skip.php" frameborder="0" name="frame1" />
        <frame src="http://xyz.com" frameborder="0" />
</frameset><noframes></noframes>
</body>
</html>

skip.php 内のコード

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<a href="http://www.example.com/"><img src="images/skip.png" border="0" alt="Skip"></a>
</body>
</html>

JavaScript コードは、skip.php 内に貼り付けたときに機能しますが、link.php 内で機能させたい

4

2 に答える 2

2

動作するスクリプトは

$(document).ready(function(){
$($('frame[name="frame1"]')[0].contentWindow).load(function() {
var documentOfFrame = $('frame[name="frame1"]')[0].contentDocument;

   $('[alt="Skip"]',documentOfFrame).click(function(){});
   setTimeout(function(){$('[alt="Skip"]',documentOfFrame).trigger('click');}, 4e3);
});
});
于 2012-07-05T02:38:18.987 に答える
0

jQuery()セレクターのコンテキストとしてフレームのドキュメントを指定する必要があります。

$(function() {
   //Waiting till the frame's hierarchy will be constructed
   $(frames['frame1']).load(function() {
      var documentOfFrame = this.contentDocument;

      $('[alt="Skip"]',documentOfFrame).click(function(){});
      setTimeout(function(){$('[alt="Skip"]',documentOfFrame).trigger('click');}, 4e3);
   });
});

「セレクタ コンテキスト」セクションを参照してください。

于 2012-07-04T17:10:29.190 に答える