日期:2014-05-17 浏览次数:20581 次
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="jQuery-ui-1.8.18.custom/js/jquery-1.7.1.min.js" type="text/javascript"></script>
<script>
window.onload = function () {
$("#i").click(function () {
var div = $("#ii");
var divoffset = $(this).offset();
div.attr("style", "position:absolute;display:block;");
div.css({ left: divoffset.left,top: divoffset.top+$(this).height()+5})
})
}
function closediv() { var div = $("#ii"); div.hide() }
</script>
</head>
<body>
<form id="form1" runat="server">
xxxxxxxx
<input id="i" />
<div id="ii" style="display: none" >
asdfasas
<span onclick="closediv()">关闭</span>
</div>
</form>
</body>
</html>