JavaScript中的定位元素

时间:2014-05-05 19:19:42

标签: javascript html5 css3 popup

我从这里使用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>

谢谢。

1 个答案:

答案 0 :(得分:1)

试试这个

<div onclick="someFunction('close')">content</div>

function someFunction(action){
  window.location.hash=action;
}