javascript集锦

1、打开一个固定大小的窗口,打开后大小不可调,只有地址栏信息,无工具栏。。。
function openNewWindow(id){
   var url = "stat_StatDocument_Summary_Controller.do?channelid="+id; 
   var height = 755;
   var top = window.screen.height / 5;
   var width =500;
   var left = window.screen.width / 5;
   window.open(url, "", "width=" + height + ", height=" + width + ", top=" + top + ", left=" + left + ", scrollbars=yes");
}

2、表单提交
<form action="doc_docdocument_show.do" name="fileForm" method="post" onSubmit="return checkSubmit();">
    <input name="filePath" size="20" type="file" onchange="upload();"/>
</form>
function upload() {
   document.fileForm.submit();
}

3、失效href链接(转) http://www.blogjava.net/CopyHoo/articles/246251.html
<script type="text/javascript">
   function myclick(){
      alert('呵呵,我失效了吗?');
      return false;
   }
</script>


常用方法:
encodeURIComponent()编码
isFinite()判断是否是数字
toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。

你可能感兴趣的:(JavaScript,java,html,.net,Google)