Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
46 lines (46 loc) · 959 Bytes

File metadata and controls

46 lines (46 loc) · 959 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
var num = "30";
var info = "www.MLDNJAVA.cn";
alert("数字:" + num + ";字符串:" + info);
</script>
<script type="text/javascript">
function fun() {
alert("hello world!")
return "www.baidui.com";
}
alert(fun());
</script>
</head>
<body>
<script type="text/javascript">
str = "MLDN";
if (str == "MLDN") {
alert("内容符合判断!");
} else {
alert("内容不符合判断!");
}
</script>
<script type="text/javascript">
var rows = 9;
var cols = 9;
document.write("<table border=\"1\">");
for (var i = 1; i <=rows; i++) {
document.write("<tr>");
for (var j = 1; j <= cols; j++) {
if(j<=i){
document.write("<td>"+i+"*"+j +"="+ i * j+ "</td>");
}else{
document.write("<td>&nbsp;</td>");
}
}
document.write("</tr>");
}
document.write("</table>");
</script>
</body>
</html>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.