我有這樣的代碼空間:如何捕獲輸入元素和測試的內容如果是betwween字母AZ AZ字符分解爐中水泥兩個字
$(document).ready(function(){
$("input").focus(function(){
$(this).css('outline-color','#559FFF');
$(this).blur(function(){
$(this).css("outline-color","#FF0000");
});
});
$("input").click(function(){
var value = $(this).val(function(){
$(this).html("");
});
});
$(".awesome").click(function(){
var toStore = $("input[name=name]").val();
if((toStore===/[a-zA-Z]/)===true){
$("#contain").children().fadeOut(1000);
$("#contain").delay(5000).queue(function(){
$("#contain").append("<p>welcome : " + toStore + " </p>");
});
}else{
alert("You Must Put a Valid Name");
}
});
});
我希望我的代碼來測試,趕上價值我輸入的,如果該值是一個字符AZ之間 包括像兩個詞之間的空間利用:「姓」 如果其確定thne procced到:
$("#contain").children().fadeOut(1000);
$("#contain").delay(5000).queue(function(){
$("#contain").append("<p>welcome : " + toStore + " </p>");
});
別人提醒他必須把用戶有效的字符。
是的,謝謝你的回答和解釋! – 2013-04-05 18:47:08