0

我有一个 php 文件中的联系我框。php 在 contact.html 文件中的 a 中运行。我的目标是,当有人将鼠标放在“提交”按钮上时,contact.html 文件中的图像会发生变化。提交按钮位于 php 文件中。如何进行鼠标悬停事件来更改contact.html文件中图像的src?

在contact.html文件中我有:

<img id = "me" src="Pictures/Image1.jpg" name="mypic">
<iframe src="contactform/contactform.php" frameborder='0' width='100%' height='600' ></iframe>

我一直在使用的javascript是:

var image1=new Image()
image1.src="Pictures/Image1.jpg"
var image2=new Image()
image2.src="Pictures/Image2.jpg"
var image3=new Image()
image3.src="Pictures/Image4.jpg"

changepic1 = function() {
    document.images.me.src=image1.src
        }

changepic2 = function() {
    document.images.me.src=image2.src
        }

changepic3 = function() {
    document.images.me.src=image3.src
        }

在 php 文件中我有:

<div class='container'>
    <input type='submit' name='Submit' value='Submit' />
</div>
4

2 回答 2

1

使用 jQuery 处理鼠标悬停事件。在您的 html 中包含 jQuery,如下所示:

 <head> 
     <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>  
 </head>

向您的 iframe 添加一个 id:

 <img id = "me" src="Pictures/Image1.jpg" name="mypic">
 <iframe id = "myframe" src="contactform/contactform.php" frameborder='0' width='100%' height='600' ></iframe>

这是鼠标悬停切换图像:

<script type="text/javascript">
window.onload = function(){

    var image1=new Image()
    image1.src="Pictures/Image1.jpg"
    var image2=new Image()
    image2.src="Pictures/Image2.jpg"
    var image3=new Image()
    image3.src="Pictures/Image4.jpg"

    $('#myframe').contents().find('container').mouseover(function() {
        var thisSrc = $('#me').attr('src');
        var newSrc;

        if(thisSrc == image1.src)
           newSrc = image2.src;
        else if(thisSrc == image2.src)
           newSrc = image3.src;
        else
           newSrc = image1.src;

        $('#me').attr("src", newSrc);
    });
};
</script>
于 2013-01-17T11:38:38.043 回答
0

你可以做简单的鼠标悬停事件。单击此链接以获取示例。

你也可以使用 jquery 来做到这一点。单击此链接以获取示例。

于 2013-01-17T10:53:48.500 回答