* @see 鼠标点击拖拽的效果(页面可以同时拖动多个框)
* @param boxId 整个对象(框)的id(一般为div或table)
* @param event 内置对象(必须传入)
*/
function mousePlead1(event, boxId) {
var o = getO(boxId)
var isIE = document.all ? true : false
var e = event
var x = e.offsetX || e.layerX
var y = e.offsetY || e.layerY
document.onmousemove = function(e) {
o.style.filter = 'Alpha(opacity=70)'
o.style.opacity = '0.7'
if (isIE) {
o.setCapture()
} else {
window.captureEvents(Event.MOUSEMOVE)
}
var e = window.event || e
if (e.clientX - x >= 0 && e.clientY - y >= 0 && e.clientX - x <= getWinSize()[0] - getO(boxId).offsetWidth
&& e.clientY - y <= getWinSize()[1] - getO(boxId).offsetHeight) {
o.style.left = (e.clientX - x) + "px"
o.style.top = (e.clientY - y) + "px"
}
}
document.onmouseup = function(e) {
document.onmousemove = function() {
}
if (isIE) {
o.releaseCapture()
} else {
window.releaseEvents(o.MOUSEMOVE)
}
o.style.filter = ""
o.style.opacity = ""
}
}
/**
* @see 获得对象
* @param id 对象的id(表单元素和其他标签都可以)
* @return Object
*/
function getO(id) {
return document.getElementById(id)
}
/**
* @see 获得当前窗体的大小(width,height)
* @return Array
*/
function getWinSize() {
var width = parseInt(document.documentElement.clientWidth)
var height = parseInt(document.documentElement.clientHeight)
return new Array(width, height)
}
1、新建一个html文件,命名为test.html。
2、在test.html文件中,使用script标签加载jquery.min.js文件,成功加载该文件,才能使用jquery方法。
3、在js标签内,在页面加载完成时,获取body对象,使用append()方法向body动态添加一个div元素。
4、在test.html文件中,使用button标签创建一个按钮,按钮名称为“获取id值”。
5、在test.html文件中,给button按钮绑定onclick点击事件,当按钮被点击时,执行getid()函数。
6、在js标签内,创建getid()函数,在函数内,通过元素名称获得div对象,使用attr()方法获得动态添加div的id值,并使用alert()方法将值输出。
7、在浏览器打开test.html文件,点击按钮,查看结果。