<html>
<body>
<details>
<summary>Copyright 2011.</summary>
<p>All pages and graphics on this web site are the property of W3School.</p>
</details>
</body>
</html>
<!DOCTYPE HTML><html>
<head>
<meta charset=UTF-8>
<title>YuGiOh</title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$ (function ()
{
var body = $ ('body')
$ (":button").click (function ()
{
body.append ('<a class="details" href="#">详情</a>')
})
body.delegate ('.details', 'click', function ()
{
alert ($ (this).index (".details"))
})
})
</script>
</head>
<body>
<button>insert</button>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)