此方法检查字符串是否为空。此方法不同于 blank()。仔细看例子。
语法
string.empty();
返回值
返回一个布尔值。如果字符串为空,则返回 true,否则返回 false。
例子
HTML
x
25
25
1
<html>
2
<head>
3
<title>Prototype examples</title>
4
<script type = "text/javascript" src = "/javascript/prototype.js"></script>
5
6
<script>
7
function showResult() {
8
var str = '';
9
alert("''.empty() : " + str.empty() );
10
alert("''.blank() : " + str.blank() );
11
12
var str = ' ';
13
alert("' '.empty() : " + str.empty() );
14
alert("' '.blank() : " + str.blank() );
15
}
16
</script>
17
</head>
18
19
<body>
20
<p>Click the button to see the result.</p>
21
<br />
22
<br />
23
<input type = "button" value = "Result" onclick = "showResult();"/>
24
</body>
25
</html>
阅读剩余 78%
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/8895.html