<html>
<head>
<style>
#container {position:relative;left:15%;}
#myImage {width:65%;height:280px;}
#text {padding-top: 50px;}
#textbox {width:65%;height:280px;position:absolute;top:0;left:0;}
</style>
</head>
<body>
<div id="container" onclick="changeImage()" >
<img id="myImage" src="C:\Documents and Settings\svarghe1\My Documents\Downloads\Jaguar_Xj_Saloon_4.jpgj_.jpg" alt="">
<div id="textbox">
<p style="color:white;text-align:center;margin-top:50px;"class="text">Jaguar_Xj_Saloon</p>
<script>
function changeImage() {
if (document.getElelmentById("container").innerHTML="myImage") {
container.appendChild(myImage)
} else {
container.appendChild(textbox)
}
}
</script>
</div>
</div>
</body>
</html>
在这里,我正在尝试为Sharepoint网站页面创建一个脚本,将div
中的元素从Image
更改为textbox
Onclick
或hover
属性。可能会有很多错误,因为这是我第一次尝试使用 JS 。我也试过
<script>
function changeImage() {
var image= document.getElementById("myImage");
if (image=true) {
var element = document.getElementById("container");
var UImage = document.createElementById("myImage");
element.appendChild(UImage)
} else {
var element = document.getElementById("container");
var Utextbox = document.createElementById("textbox");
element.appendChild(UImage)
element.appendChild(Utextbox);
}
}
</script>
#container:hover #myImage{ display:none; }
我在 CSS 中尝试了上面的代码,而不是脚本。它没有用。同时代码,
a:hover #box{ text-decoration: none;color:green;background-color: Turquoise;cursor:pointer }
工作得很好。这是为什么?我已经class
而不是id
。它也没有用。它适用于普通的 HTML 文件。但无法在Sharepoint网站上工作。
那么,你能帮忙吗?
答案 0 :(得分:0)
不是从javascript中附加图片和文本框,而是可以为两者编写html代码,并根据需要进行隐藏/显示。我认为它会让事情变得更容易和整洁。
对于Hover属性,您可以使用jquery附加悬停事件。 您可以查看以下链接:http://api.jquery.com/hover/