我下執行如下jQuery腳本:正則表達式不是在jQuery的工作表單驗證
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#textThing").blur(function(){
var isNumber = $("#textThing").val().match(/^\d+/);
$("#p2").html(isNumber);
});
});
</script>
</head>
<body>
<input type="text" id="textThing" />
<p id="p2">Paragraph 2</p>
</body>
</html>
的問題是,P2從來沒有給我任何東西,當我取消輸入。我做錯了什麼?
#Folio是用於選擇器?? –
哦,複製錯誤。 – rdelfin