<script type="text/javascript">
$(document).ready(function() {
$("#<%=txtNumeric.ClientID %>").focusout(function() {
var textvalue = $("#<%=txtNumeric.ClientID %>").val();
if (!validateDecimal(textvalue))
return false;
else {
$(this).removeClass("focus");
return true;
}
});
});
function validateDecimal(value) {
var RE = new RegExp(/^\d\d*\.\d\d$/);
if (RE.test(value)) {
return true;
} else {
alert("Please Enter in XX.XX format !");
$(this).addClass("focus");// this keyword is not working here !!
$(this).focus(); // this keyword is not working here !!
return false;
}
}
</script>
如何獲取被調用函數中當前asp文本框的id? bcuz這不起作用。有誰能夠幫助我 ?如何獲得jQuery文本框中的id id
爲什麼不把它作爲參數傳遞? –
我傾向於使用一個類,並找到使用它,它避免了混合服務器代碼與客戶端腳本。 – RubbleFord