日期:2014-05-16 浏览次数:20396 次
$("#TimeSelect").dialog({
autoOpen: false,
width:250,
height:200,
buttons: {
"确定": function() {
$( this ).dialog( "close" );
$("#txTime").val($("#spanHour").text() + ":" + $("#spanMin").text())
},
"取消": function() {
$( this ).dialog( "close" );
}
}
});
$("#txTime").click(function(){
$("#TimeSelect").dialog("option","position",[$("#txTime").offset().left,$("#txTime").offset().top+$("#txTime").height()+5]);
$("#TimeSelect").dialog( "open" );
//alert($("this").outerHeight + "px");
});
<input type="text" name="txTime" id="txTime" />