Posted in Javascript onJanuary 16, 2015
本文实例讲述了jQuery中scrollLeft()方法用法。分享给大家供大家参考。具体分析如下:
此方法获取或设置匹配元素相对滚动条左侧的偏移(offset)量。
语法结构一:
当scrollLeft()方法没有参数的时候就是获取匹配元素相对滚动条左侧的偏移量。
$(selector).scrollLeft()
实例代码:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="https://3water.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="https://3water.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/
jQuery中scrollLeft()方法用法实例
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@