<div id="box1"> <a href="#"><img src="images/pskeksmall.jpg" alt="" /></a>
<h2 class="subtitle">Student Makes our new website</h2>
<p>We are very proud to announce that our new website was designed and created by Charlie Johnson</p>
<ul class="contact">
<li><a href="#" class="icon icon-facebook"><span></span></a></li>
<li><a href="#" class="icon icon-dribbble"><span>Pinterest</span></a></li>
<li><a href="#" class="icon icon-tumblr"><span>Google+</span></a></li>
</ul>
</div>
我想要做的事情是在一個小窗口中打開,並有關於該主題的更多信息。我只是簡單地看了一下JavaScript,所以如果有一種簡單的方法可以在沒有JScript的情況下做到這一點,那就更好了。我還需要爲其他3個盒子做這個。如何使我的鏈接打開一個「彈出」窗口
編輯:也許我不是很清楚,我不想用戶離開頁面,根本不使用Chrome我知道彈出窗口在小對話框中打開,這是我想要的信息由...提供。如果這是不可能的,有沒有辦法可以改變主文本區域中的信息,而無需更改頁面?
編輯2:行,所以我發現這對W3Schools.com:
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";
}
</script>
</head>
<body>
<h1>JavaScript in Head</h1>
<p id="demo">A Paragraph.</p>
<button type="button" onclick="myFunction()">Try it</button>
</body>
</html>
所以現在我想知道是否有可能使用我的形象在替補按鈕,並改變了我,而不是段落以上使用。
基本上你要打開的信息一個div上懸停什麼聯繫呢? –
@ShudhanshShekhar Sorta,但不是懸停,我希望當他們點擊它。 –
閱讀此主題:http://stackoverflow.com/questions/11023816/toggle-divs-without-using-javascript –