1. 程式人生 > >應用雜湊值更改圖片hash

應用雜湊值更改圖片hash

應用雜湊值更改圖片hash

 

      AppStore提交App時會遇到相同應用稽核被拒的問題:

這個應用程式複製了你或其他開發者提交給app Store的其他應用程式的內容和功能,這被認為是垃圾郵件的一種形式。

      應用雜湊值更改圖片hash,應用修改圖片hash。

js如何修改圖片的hash。

    可以通過

     window.location.hash的方式設定圖片的hash.

實現思路:

1、資料儲存多張圖片的地址,如果沒有就是0;
2、獲取當前的雜湊值,並設定當前的圖片
3、每點選一下圖片就會換下一張並修改雜湊值

 

實現程式碼:

<body>
		<img src="images/1.jpg" id="img1"/>
		<script type="text/javascript">
		
		  //雜湊值 
//			window.location.hash=3;
//			var   hash=window.location.hash;
//			console.log(hash.substring(1));
			
			
			var  img=document.getElementById('img1');
			img.onclick=function(){
				var   hash=window.location.hash.substring(1);
				console.log(hash);
				if(hash=='')
				{
					hash=1;
					window.location.hash=1;
				}
			    hash=parseInt(hash);    //轉換為number型別
			   // console.log(typeof hash);
			   //換圖片
			   hash++;
			   if(hash>5)hash=1;
			   window.location.hash=hash;
			   img.src='images/'+hash+'.jpg'	
			}
		</script>
	</body>