Last active
January 3, 2016 13:19
-
-
Save chemzqm/8469002 to your computer and use it in GitHub Desktop.
点乐内嵌广告js调用后端测试代码
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>webview ad for testing</title> | |
</head> | |
<body> | |
<div id="info">info</div> | |
<div id="download">download</div> | |
<pre id="result"> | |
</pre> | |
<script type="text/javascript"> | |
var info = document.getElementById('info'); | |
function __info(str) { | |
document.getElementById('result').innerHTML = str; | |
} | |
info.addEventListener('click', function() { | |
window.location.href = 'dollar://deviceinfo?callback=__info'; | |
}) | |
var download = document.getElementById('download'); | |
function __download() { | |
document.getElementById('result').innerHTML = 'done'; | |
} | |
var url = 'http://n.dianjoy.com/dev/api/lobster/download.php?ad_id=d55fff203820bf056a8059e03f307f96&ad_name=%E4%B8%89%E5%9B%BD%E6%9D%80&ad_url=upload%2Fad_url%2F201401%2F0_d55fff203820bf056a8059e03f307f96.apk&snuid=&down=0&appid=072cb4d9d9d5dfd23ed2981e5e33fe59&deviceid=860806022733629&cid=dianjoy&lv=1.0.0.s&number=70&money=%E9%87%91%E5%B8%81&add_kj=true&active_time=12&app_package_name=com.dlnetwork.example&pack_name=com.bf.sgs&befour_tips=%E8%AF%B7%E6%B3%A8%E5%86%8C%E5%90%8E%E5%A1%AB%E5%86%99%E6%98%B5%E7%A7%B0%E8%AF%95%E7%8E%A93%E5%88%86%E9%92%9F%E8%8E%B7%E5%A5%96%E5%8A%B1&setup_tips=%E8%AF%B7%E6%B3%A8%E5%86%8C%E5%90%8E%E8%AF%95%E7%8E%A93%E5%88%86%E9%92%9F%EF%BC%8C%E5%8F%AF%E8%BD%BB%E6%9D%BE%E8%8E%B7%E5%BE%97%E5%A5%96%E5%8A%B1%EF%BC%81&cate=%E6%B3%A8%E5%86%8C&create_time=1389090862&token=1edcce410ee31144032c1f71ce941ecf'; | |
download.addEventListener('click', function() { | |
window.location.href = 'dollar://download?callback=__download&url=' + encodeURIComponent(url); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment