script type="text/javascript">
function Pic() {
$('<iframe src="網址" id="urlPic" />').dialog({
title: '上傳照片',
position: 'top',
width: '400',
height: '400',
modal: 'true',
open: function () {
$(this).css('width', '95%');
},
close: function () {
d = new Date();
var userId = '<%=_userId%>';
$("#personalPic").attr("src", '指定網址?userID=' + userId + "&d=" + d.getTime());
},
針對$("#personalPic")做改變
buttons: {
關閉: function () { $(this).dialog('close'); }
}
});
};
</script>
0 留言