lookimg.html
568 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script type="text/javascript" src="/public/static/js/jquery.js"></script>
</head>
<body>
输入地址:<input type="text" id="faddr" value="" style="width: 1000px"/>
<input type="button" onclick="goimg()">
</body>
<script>
function goimg() {
var url=$("#faddr").val();
url= url.replace("http://wxd-10000842.file.myqcloud.com/","http://wxd-10000842.cos.myqcloud.com/");
alert(url)
window.open(url);
}
</script>
</html>