/*控制台输出*/
console.log(“内容”)
/*控制台警告*/
console.warn(“内容”)
/*错误提示*/
console.error(“内容”)
/*弹出警告框*/
alert(“内容”)
/*文档打印输出*/
document.write()
/*重要*/
color: black !important;
/*程序书写的方式*/
<script type="text/javascript">
/* 提示框 */
alert("山上有座庙");
/*乘方如果我们想计算ab,可以使用Math.pow(底数,乘数)math指的是数学,pow就是power乘方*/
var a = Math.pow(3,4);
/*开根号:*/
var f = Math.sqrt(81);
/*只能保留最开头的数字,后面文字自动消失*/
var c = parseInt("11一年有365天");
/*鼠标点击*/
onclick
/*鼠标双击*/
ondblckick
/*小手*/
cursor:pointer;
/*大写字母 */
var message="Hello world!";
var x=message.toUpperCase();
/* 字符串的长度*/
var message="Hello World!";
var x=message.length;
position: absolute;
position: relative;
/*离开焦点的方法*/
/*隐藏与显示*/
display: none;"block"
/*id*/
document.getElementById
window.onload = function(){
/*单击*/
onclick
/*圆*/
border-radius:50%;
时间: 2024-10-26 15:01:58