DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中scrollLeft()方法用法實例教程
jQuery中scrollLeft()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery中scrollLeft()方法用法。分享給大家供大家參考。具體分析如下:

此方法獲取或設置匹配元素相對滾動條左側的偏移(offset)量。

語法結構一:

當scrollLeft()方法沒有參數的時候就是獲取匹配元素相對滾動條左側的偏移量。
代碼如下:$(selector).scrollLeft()

實例代碼:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
#div1{
  border:1px solid black;
  width:200px;
  height:200px;
  overflow:auto
}
#div2{
  height:150px;
  width:400px;
}
#div3{
  height:40px;
  width:200px;
  background-color:green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    alert($("#div1").scrollLeft());
  });
})
</script>
</head>
<body>
<div id="div1">
  <div id="div2">
    <div id="div3"></div>
  </div>
</div>
<button>獲取offset值</button>
</body>
</html>

語法結構二:

當scrollLeft()帶有參數的時候是設置匹配元素相對滾動條左側的偏移量。
代碼如下:$(selector).scrollLeft(val)

參數列表:
參數 描述 val 設置水平滾動條左側偏移量

實例代碼:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
#div1{
  border:1px solid black;
  width:200px;
  height:200px;
  overflow:auto
}
#div2{
  height:150px;
  width:400px;
}
#div3{
  height:40px;
  width:200px;
  background-color:green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("#div1").scrollLeft(100);
  });
});
</script>
</head>
<body>
<div id="div1">
  <div id="div2">
    <div id="div3"></div>
  </div>
</div>
<button>設置offset值</button>
</body>
</html>

希望本文所述對大家的jquery程序設計有所幫助。

本文轉自:螞蟻部落http://www.softwhy.com/

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved