javascript的新手,需要我的第一个程序的帮助

时间:2011-08-16 15:35:38

标签: html javascript-events

我正在尝试向我的网站添加一个功能,因此当用户点击脚注时,浏览器会将其显示为内联。这是我有多远,

var locate= document.getElementById("footnote1");
var note= document.getElementById("footnotes2");
function footnote() {
    locate.onclick= note.style.display="inline";
};

真的很感激任何帮助。

2 个答案:

答案 0 :(得分:0)

工作示例

http://jsfiddle.net/v8fHE/

你只需要在函数中包含onclick动作

trigger.onclick=function(){toChange.style.background="#FF0000"};

答案 1 :(得分:0)

Here is an example你想要什么。

var locate = document.getElementById("footnote1");
var note = document.getElementById("footnotes2");
locate.onclick = function() {
    note.style.display = "inline";
};