不用alert,用console.log()
復制代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function showLog(message){
console.log(message);
}
function test(name){
showLog(name);
}
test("hello");
</script>
</head>
<body>
</body>
</html>
以上算是一個個人心得,這裡分享給大家,小伙伴們試試看。