<html>
<head>
<script type="text/javascript">
//正則.test(內(nèi)容),返回true或false
function t1(){
var con = document.getElementsByName('content')[0].value;//需要查找的內(nèi)容
var reg = /hi/;//需要匹配的內(nèi)容
alert(reg.test(con));
}
//正則.exec(內(nèi)容),返回匹配的內(nèi)容
function t2(){
var con = document.getElementsByName('content')[0].value;//需要查找的內(nèi)容
var reg = /\bhi\w+/;//需要匹配的內(nèi)容
alert(reg.exec(con));
}
</script>
</head>
<body>
<textarea rows="5" cols="30" name="content"></textarea><br />
<button onclick="t1();">正則測(cè)試(test函數(shù))</button><br />
<button onclick="t2();">正則測(cè)試(exec函數(shù))</button>
</body>
</html>