需要准备的材料分别有:电脑、html编辑器、浏览器。
10多年的武江网站建设经验,针对设计、前端、开发、售后、文案、推广等六对一服务,响应快,48小时及时工作处理。成都全网营销推广的优势是能够根据用户设备显示端的尺寸不同,自动调整武江建站的显示方式,使网站能够适用不同显示终端,在浏览器中调整网站的宽度,无论在任何一种浏览器上浏览网站,都能展现优雅布局与设计,从而大程度地提升浏览体验。成都创新互联从事“武江网站设计”,“武江网站推广”以来,每个客户项目都认真落实执行。
1、首先,打开html编辑器,新建html文件,例如:index.html,编写基础代码。
2、在index.html中的script标签,输入js代码:
var el = window.document.body;
window.document.body.onmouseover = function(event) {
el = event.target;
$('body').append('br/当前鼠标在' + $(el).html() + '元素上');
}
3、浏览器运行index.html页面,此时鼠标移动到123上,会打印出光标在123元素上。
1、jquery获取滚动条高度使用.scrollTop()方法。
2、首先我们新建一个长篇的HTML文档。
3、然后我们编辑JS脚本,使用.scroll()方法,监听网页滚动。
4、然后我们使用.scrollTop()获取垂直滚动距离。
5、然后保存文件,查看获取的垂直滚动距离即可。
$(window).height();//是文档窗口高度
$("div").offset().top//是标签距离顶部高度(没有到下面的距离,比如$("div").offset().down)
$("div").offset().left//是标签距离右边高度(没有到下面的距离,比如$("div").offset().right)
$(document).scrollTop();//是滚动条高度
$("div").height();//是标签高度
你要的高度+$("div").height()+[$("div").offset().top-$(document).scrollTop()]=$(window).height();
经过简单的数学变换即可得到你要的值了
获取页面某一元素的绝对X,Y坐标,可以用offset():
var X = $(‘#DivID’).offset().top;
var Y = $(‘#DivID’).offset().left;
获取相对(父元素)位置:
var X = $(‘#DivID’).position().top;
var Y = $(‘#DivID’).position().left;
通过getBoundingClientRect方法获取对象位置,包含: left , top , right , bottom 4个参数值。
结构如下:
index() 方法返回指定元素相对于其他指定元素的 index 位置。
div class="menu"
div class="menu-item active"菜单一/div
div class="menu-item"菜单二/div
div class="menu-item"菜单三/div
/div
div class="content"
div内容一/div
div class="hide"内容二/div
div class="hide"内容三/div
/div
script type="text/javascript" src="../js/jquery1.9.1.js"/script
script
$(function(){
$(".menu div").click(function(){
var t=$(this).index();
$(".menu div").each(function(i,e){
if(t==i){
$(e).addClass("active");
$(".content div").eq(i).removeClass("hide");
}else{
$(e).removeClass("active");
$(".content div").eq(i).addClass("hide");
}
});
});
});
/script
获取当前位置代码如下:
html
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /
titlejavascript获得鼠标位置/title
/head
body
script
!-- 其中的参数e指的是事件--
function mouseMove(ev)
{
Ev= ev || window.event;
var mousePos = mouseCoords(ev);
//获取当前的x,y坐标
document.getElementByIdx_x_x_xx_x("xxx").value = mousePos.x;
document.getElementByIdx_x_x_xx_x("yyy").value = mousePos.y;
}
function mouseCoords(ev)
{
//鼠标移动的位置
if(ev.pageX || ev.pageY){
return {x:ev.pageX, y:ev.pageY};
}
return{
x:ev.clientX + document.body.scrollLeft - document.body.clientLeft,
y:ev.clientY + document.body.scrollTop - document.body.clientTop
};
}
document.onmousemove = mouseMove;
/script
鼠标X轴:
input id=xxx type=text
鼠标Y轴:
input id=yyy type=text
/body