猿问

console.log 与 document.write 的区别是什么?

  • var greeting=function(name)

       {console.log("Great to see you," +name);}

        greeting("Tina")

  • var mystr="Hello World";

    document.write(mystr);

Nina0223
浏览 1626回答 1
1回答

qq___524

console.log是往控制台写东西document.write是向网页上写东西
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答