这是一个示例代码:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<button onclick="myFunction();">Click!</button>
<script type="text/javascript">
function myFunction() {
var text = "";
if (text)
{
alert(text);
}
else
{
alert("There's no text!");
}
}
</script>
</body>
</html>
我想知道if (text)和if (text != "")之间有区别吗?
提前致谢!
麦克风