js 經常使用方法收藏

1.禁止右鍵菜單 javascript

document.oncontextmenu = function (event){
 if(window.event){
  event = window.event;
 }try{
  var the = event.srcElement;
  if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
   return false;
  }
  return true;
 }catch (e){
  return false;
 }
}

 

2.動態獲取窗口大小window.onresize出發。 java

<script type="text/javascript">
function findDimensions(){
$("#imgDIv").width($("#layout").width()).height($("#layout").height()).attr("src","img/backimg.jpg");
}
             //調用函數,獲取數值
$(function(){findDimensions();});
window.onresize=findDimensions;
</script> 函數

相關文章
相關標籤/搜索