我想将下面的脚本设置为在页面加载时开始,这样如果输入了公司名称,增值税字段将自动显示,有人可以帮我吗?
//--></script>
<script type="text/javascript"><!--
$('.colorbox').colorbox({
width: 560,
height: 560
});
$("input[name=company]").blur(function() {
if($(this).val().length>0) {
$("#vat").show();
$("#fiscal").hide();
$("#vat").find("input").eq(0).focus();
} else {
$("#vat").hide();
$("#fiscal").show();
$("#fiscal").find("input").eq(0).focus();
}
});
//--></script>