jquery
web前端-前端问答
网页源码获取app,ubuntu蓝牙连接失败,tomcat修改成网址访问,pychram写爬虫,php技术相关知识外包,词库 seolzw
jquery设置元素位置的多种方法springmvc 的源码下载,ubuntu装usb驱动,tomcat9淇 伅,免费爬虫平台,php的学习资料外包,seo职务lzw
1、使用offset()java微信登录源码,vscode输出为啥是乱码,ubuntu电影下载,tomcat 实现热部署,在线爬虫检测,51job简历导出php,山东网络营销seo推广,仿生活家装修公司网站,帝国cms 图片内容模板lzw
offset() 方法可设置被选元素相对于文档的偏移坐标。$(selector).offset({top:value,left:value})
规定以像素为单位的 top 和 left 坐标。
示例:
p { width:150px; background-color:pink; padding: 5px; } $(document).ready(function() { $("button").click(function() { $("p").offset({ top: 200, left: 200 }); }); });这是一个段落。
2、使用scrollTop()
scrollTop() 方法可设置被选元素的垂直滚动条位置。
$(selector).scrollTop(position)
提示:当滚动条位于最顶部时,位置是 0。
示例:
$(document).ready(function() { $("button").click(function() { $("div").scrollTop(100); }); });This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.
3、使用使用scrollLeft()
scrollLeft() 可以设置匹配元素相对滚动条左侧的偏移,即水平滚动条的位置。
$(selector).scrollLeft(position)
滚动条的水平位置指的是从其左侧滚动过的像素数。当滚动条位于最左侧时,位置是 0。
示例:
$(document).ready(function() { $("button").click(function() { $("div").scrollLeft(100); }); });The longest word in the english dictionary is: pneumonoultramicroscopicsilicovolcanoconiosis.
【推荐学习:jQuery视频教学、web前端视频】