2013年8月3日 星期六

javascript string equals ==

<html>
<body>
<script type="text/javascript">
var str="Hello world!"
document.write(str.match("world") + "<br />")   <!-- world -->
document.write(str.match("World") + "<br />")    <!-- null  -->
document.write(str.match("worlld") + "<br />")    <!-- null -->
document.write(str.match("world!"))    <!--world! -->
</script>
</body>
</html>


沒有留言:

張貼留言