jquery onload事件
2015-02-25 22:34:46 访问(1602) 赞(0) 踩(0)
在页面加载后,alert弹出"Hello.world!"的提示
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery onload事件</title>
<%=VersionHideInfo%>
<script type="text/javascript" src="<%=jQuery%>" language="javascript"></script>
</head>
<body>
</body>
</html>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
alert("Hello.world!");
});
</script>
示例
上一条:
下一条:
相关评论
发表评论