我有一个 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>