工具sublime
框架学习 vue 开源代码Vant
网页错误验证工具:http://validator.w3.org/
css简单动画:https://daneden.github.io/animate.css/
判断是否拥有某个类:$(this).is(‘.sellouts’)
<!DOCTYPE html>
<html lang=”zh-Hans”>
<head>
//<title>gary demos</title>
<!– 包含引用文件“jquery-3.1.0.imn.js” 需要先有这个文件–>
<script type=”text/javascript” src=”jquery-3.1.0.min.js”></script>
<script type=”text/javascript”>
// js函数 。用jquery调用ajax
function garyfun(){
//http://wx224d24fedead56ee.opendev.guangguang.net.cn/jigsaw_puzzle/jigsaw_puzzle/index/game_confirm
$.ajax( {
url:’http://wx224d24fedead56ee.opendev.guangguang.net.cn/jigsaw_puzzle/jigsaw_puzzle/index/game_confirm’,
type: ‘GET’,
data: {},//传出的数据
dataType: ‘json’,
contentType: ‘application/json’,
timeout: 3000,
success: function(response) {
alert(response)
// console.log(response.something);
},
error: function(request, errorType, errorMessage) {
// console.log(“[” + errorType + “] ” + errorMessage);
},
beforeSend: function() {
// do something like .addClass(‘is-fetching’)
},
complete: function() {
//do something like removeClass(‘is-fetching’)
}
});
}
</script>
</head>
<body background=”IMG_20171023_122117.jpg”>
<h1>Set background color</h1>
//通过按钮点击调用js函数
<button οnclick=”garyfun()”>touch me</button>
</body>
</html>
//http://www.jb51.net/article/62703.htm 参考出处
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/26450.html