1、JavaScript代码
function judgeType(param) {
if(typeof param == 'string' ) {
alert('这是一个字符串')
} else if (typeof param == 'number') {
alert('oh!Number')
}
}
judgeType('aaa')
2、HTML代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script src="js/a2.js"></script>
</head>
<body>
</body>
</html>
3、测试结果
(1)字符串类型
(2)数值类型
你的需求是什么?写一个最简单的 页面加载弹出!!function load(){
alert('你好!!')
}
window.onload=load