玛氪宕·梦魔(Markdown Memo),使用Markdown的云端备忘录,百度IFE的RIA启航班的不合格的作业,才……才没有什么阴谋呢!
源gitee链接https://gitee.com/arathi/MarkdownMemo?_from=gitee_search
				
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					36 lines
				
				1.1 KiB
			
		
		
			
		
	
	
					36 lines
				
				1.1 KiB
			| 
											11 years ago
										 | <!DOCTYPE html> | ||
|  | <html lang="zh"> | ||
|  |     <head> | ||
|  |         <meta charset="utf-8" /> | ||
|  |     </head> | ||
|  |     <body> | ||
|  |         <!--
 | ||
|  |          这是同域下的callback页面,本页面在iframe内,所以只要通过window.parent就能操作父窗口的元素  | ||
|  |         --> | ||
|  |         <script type="text/javascript">  | ||
|  |             var query = {}; | ||
|  |             var urlParams = window.location.search.split('?')[1]; | ||
|  |             urlParams = urlParams.split("&"); | ||
|  | 
 | ||
|  |             for (var i = 0; i< urlParams.length; i++)  | ||
|  |             { | ||
|  |                 var param       = urlParams[i].split("=");  | ||
|  |                 query[param[0]] = param[1];  | ||
|  |             } | ||
|  | 
 | ||
|  |             var imageDialog = window.parent.document.getElementById(query['dialog_id']); | ||
|  |             //console.log(imageDialog, window.parent.document, window.parent, query); | ||
|  | 
 | ||
|  |             if (query['success'] === '1') | ||
|  |             { | ||
|  |                 imageDialog.querySelector("[data-url]").value = query['url']; | ||
|  |             } | ||
|  |             else | ||
|  |             { | ||
|  |                 alert(query['message']); | ||
|  |             } | ||
|  | 
 | ||
|  |             location.href = "about:blank"; | ||
|  |         </script>         | ||
|  |     </body>    | ||
|  | </html> |