实现效果了
来源:3-30 编程练习
qq_蓝骏毅_04076633
2018-09-22 15:47:27
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
var str= "If you would have a thing well done,do it yourself";
var strUpper = str.toUpperCase();
document.write(strUpper);
document.write("<br/>");
var strLower= str.toLowerCase();
document.write(strLower);
</script>
</body>
</html>1回答
测试了你的代码,效果可以实现
继续加油!
相似问题