应用哈希值更改图片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.οnclick=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>