JavaScript和jQuery獲取inpu…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
>
<head>
<title>javascript與jQuery設定取得div絕對位置一個小應用(像日曆控制元件一樣,在編輯框下面顯示一個層)</title>
<script type="text/javascript"
src="jquery-1.3.2.min.js"></script>
<script type="text/javascript">
//全域性變數,獲得焦點的ID
var onFocusID = "";
//取得絕對位置
function absPos(node){
var x=y=0;
do{
x+=node.offsetLeft;
y+=node.offsetTop;
}while(node=node.offsetParent);
return{
'x':x,
'y':y
};
}
//顯示省份
function showProvince(obj){
//javascript的方法
//jQuery("#divProvince").css("left",absPos(obj).x);
//jQuery("#divProvince").css("top",absPos(obj).y +
jQuery(obj).outerHeight());
//jQuery的方法