📄 sample12.html
字号:
<html>
<head>
<title>String对象</title>
<script languaga="javascript">
function strexample()
{
var str = "String example";
document.write(str+'<br>');
document.write(str.length+'<br>');
document.write(str.big()+'<br>');
document.write(str.small()+'<br>');
document.write(str.fontsize(3)+'<br>');
document.write(str.fontcolor('00ff00')+'<br>');
document.write(str.italics()+'<br>');
document.write(str.fixed()+'<br>');
document.write(str.bold()+'<br>');
document.write(str.toUpperCase()+'<br>');
document.write(str.toLowerCase()+'<br>');
document.write(str.substring(4,10)+'<br>');
document.write(str.indexOf('x',0)+'<br>');
}
</script>
</head>
<body onLoad="strexample()">
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -