我正在尝试向我的网站添加一个功能,因此当用户点击脚注时,浏览器会将其显示为内联。这是我有多远,
var locate= document.getElementById("footnote1");
var note= document.getElementById("footnotes2");
function footnote() {
locate.onclick= note.style.display="inline";
};
真的很感激任何帮助。
答案 0 :(得分:0)
工作示例
你只需要在函数中包含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";
};