[JQuery] jquery 表格 如何使用 限使用數字.
jquery 表格 如何使用 限使用數字
<input name=prices size=40 value="" id=prices >
<script type="text/javascript">
$(document).ready(function() {
if($(this).find("input[name=prices]").val() == ""){ alert("抱歉: 請輸入");
return false; }
});
</script>