87,990
社区成员
发帖
与我相关
我的任务
分享<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<title>无标题文档</title>
</head>
</style>
<body>
<script type="text/javascript">
function abc()
{
alert(1)
}
function create(){
var div = document.createElement("div")
div.innerHTML='<span onclick="abc()">我是span,点我<span>';
document.body.appendChild(div)
}
create()
</script>
</body>
</html>