首页 > 语言 > JavaScript > 正文

jQuery中scrollLeft()方法用法实例

2024-05-06 16:14:37
字体:
来源:转载
供稿:网友
这篇文章主要介绍了jQuery中scrollLeft()方法用法,实例分析了scrollLeft()方法的功能、定义及获取或设置匹配元素相对滚动条左侧的偏移(offset)量时的使用技巧,需要的朋友可以参考下
 

本文实例讲述了jQuery中scrollLeft()方法用法。分享给大家供大家参考。具体分析如下:

此方法获取或设置匹配元素相对滚动条左侧的偏移(offset)量。

语法结构一:

当scrollLeft()方法没有参数的时候就是获取匹配元素相对滚动条左侧的偏移量。

复制代码代码如下:
$(selector).scrollLeft()

 

实例代码:

 

复制代码代码如下:

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.vevb.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.vevb.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/


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选