我想在下面設置腳本以啓動頁面加載,這樣如果公司名稱已經輸入,增值欄會自動顯示出來,有沒有人可以幫我解決這個問題?關於窗口加載的JavaScript
//--></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>
第1課:Java不是JavaScript的。 – Pointy