<script type="text/javascript">
// <![CDATA[
$(function() {
$("#bidprice").focus();
$("#bidprice").keyup(function(e){
var str=$(this).val();
str=str.toUpperCase();
$(this).val(str);
});
});
// ]]>
</script>
jQuery 將輸入的字元轉成大寫
3
七月
- 