我从这里使用html5 / css3模态窗口 http://www.webdesignerdepot.com/2012/10/creating-a-modal-window-with-html5-and-css3/ ,点击链接
将其关闭<a href="#close">X</a>
但我怎么能用功能这样做呢?
<div onclick="someFunction">
content
</div>
谢谢。
答案 0 :(得分:1)
试试这个
<div onclick="someFunction('close')">content</div>
function someFunction(action){
window.location.hash=action;
}