gpt4 book ai didi

js调试工具console.log()方法查看js代码的执行情况

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章js调试工具console.log()方法查看js代码的执行情况由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

我之前在调试代码的时候,跟砸js代码执行情况,一般都是通过在代码块中使用alert的方式查看js代码的执行情况,今天也是看到有朋友使用console.log函数打印输出函数,变量,对象,下边就console.log的使用情况进行记录,具体的语法是

?
1
console.log( "值为:" ,fn);

console.log()能够输出变量,函数,数组,对象等等 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<title> this 关键字_函数调用</title>
<meta http-equiv= "Content-Type" content= "text/html; charset=gb2312" ></head>
<body>
 
<input type= "text" id= "test1" name= "firstname" value= "" />
<input type= "text" id= 'lastname' name= 'lastname' value= '' >
 
</body>
 
<script type= "text/javascript" >
var testobj =
{
'id' : 1,
'content' : 'test' ,
'firstname' : function () {
var EleFirst= document.getElementById( 'test1' );
//document.getElementById('firstname').value = "zhang";
//document.getElementById("test1").value = this.content;
//document.getElementById("test1").setAttribute("value","zhang");
//this.content = val;
EleFirst.setAttribute( "value" , this .content);
console.log( "对象的值为:" ,test1); //对象的值为:<input type="text" id="test1" name="firstname" value="" />
},
'lastname' : function () {
document.getElementById( 'lastname' ).value = "ying" ;
}
};
console.log(testobj); /** 打印对像**/
 
testobj.firstname();
testobj.lastname();
</script>
</html>

最后此篇关于js调试工具console.log()方法查看js代码的执行情况的文章就讲到这里了,如果你想了解更多关于js调试工具console.log()方法查看js代码的执行情况的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com