2016/1/5 jquery

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="/jquery/jquery.js/jquery.1.11.3.min.js"></script>
<script type="text/javascript">
//jQuery noConflict() 方法
$.noConfilict();
jquery("button").click(function(){
jquery("p").text("jquery 正在运行!");
});
//jQuery noConflict() 方法-01
var jq = $.noConflict();
jq(document).ready(function(){
jq("button").click(function(){
jq("p").text("Jquery正在运行!");
});
//jQuery noConflict() 方法-02
$.noConflict();
jquery("button").click(function($){
jquery("p").text("Jquery正在运行!");
});
//jQuery 语法实例
$(document).ready(function(){
$("button").click(function(){
$(this).hide();
});
});
$(document).ready(function(){
$("button").click(function(){
$("p").hide();
});
});
$(document).ready(function(){
$("button").click(function(){
$(".test").hide();
});
});
$(document).ready(function(){
$("button".click(function(){
$("#test1").hide();
}));
});
//Hiding - Sliding- Fading
$(document).ready(function(){
$("button").click(function(){
$("#div1").fadeOut();
$("#div2").fadeOut("slow");
$("#div3").fadeOut(3000);
});
});
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
})
});
$(document).ready(function(){
$(".ex.hide").click(function(){
$(this).parents(".ex").hide("slow");
});
});
$(document).rady(function(){
$(".flip").click(function(){
$(".pane1").slideToggle("slow");
});
});
$(document).ready(function(){
$("button").click(function(){
var div = $("div");
div.animate({height:‘800px‘,opacity:‘0.4‘},"slow");
div.animate({width:‘400px‘,opacity:‘0.8‘},"slow");
div.animate({height:‘800px‘,opacity:‘0.4‘},"slow");
div.animate({width:‘400px‘,opacity:‘0.8‘},"slow");
});
});
//改变html元素内容
$(document).ready(function(){
$("button").click(function(){
$("p").html("Welcome to my home!");
});
});
// 向html元素追加内容
$(document).ready(function(){
$("#btn1").click(function(){
$("p").append(" <b>Appended text</b>.");
});

$("#btn2").click(function(){
$("ol").append("<li>Appended item</li>");
});
});
</script>
<style type="text/css">
div.pane1,p.flip
{
margin: 0px;
padding: 5px;
text-align:center;
background:palegreen;
border:1px solid greenyellow;
}
div.pane1{
height: 120px;
display: none;
}
</style>
</head>
<body>
<!--jQuery noConflict() 方法-->
<p>This is a paragraph!</p>
<button>Check the jquery!</button>
<!--jQuery 语法实例-->
<button type="button">Click me!</button>
<p id = "test1">This is a paragraph!</p>
<p class="test">This is another paragraph!</p>
<h1 class="test">Everything will be ok!</h1>
<!--Hiding - Sliding- Fading-->
<p>演示带有不同参数的fadeOut()方法。</p>
<button>点击这里,使三个矩形分别淡出。</button>
<br><br>
<div style="width: 100px;height:100px;background-color: hotpink;" id = "div1"></div>
<br>
<div style = "width:100px;height:100px;background-color: cornflowerblue;" id = "div2"></div>
<br>
<div style="width: 100px;height:100px;background-color: red;" id = "div3"></div>
<p>you click me ,i will disappear!</p>
<p>you click me ,i will disappear too.</p>
<p>me too!</p>
<h2>中国办事处</h2>
<div class="ex">
<button class="hide" type="button">hide</button>
<p>
联系人:张先生<br>
北三环中路 100号<br>
北京
</p>
</div>
<h2>美国办事处</h2>
<div class="ex">
<button class="hide" type="button">hide</button>
<p>
联系人:David<br>
第五大街 200号<br>
纽约
</p>
</div>
<div class="pane1">
<p>You must try your best!</p>
<p>You are your sunshine!</p>
</div>
<p class="flip">请点击这里。</p>
<button type="button">开始动画</button>
<p>默认情况下,所有html元素的位置都是静止的,并且无法移动,如需对位置进行操作,记得首先把元素的 CSS position 属性设置为 relative、fixed 或 absolute。</p>
<div style="background-color: pink;height: 100px;width: 100px; position: absolute;"></div>
<br><br>
<!--改变html元素内容-->
<h2>This is a headline!</h2>
<p>This is a paragraph!</p>
<p>This is another paragraph!</p>
<button type="button"> Please click me !</button>
<!--向html元素追加内容-->
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
<button id="btn1">追加文本</button>
<button id="btn2">追加列表项</button>
</body>
</html>

时间: 2024-10-16 13:44:52

2016/1/5 jquery的相关文章

2016/4/1 jquery 与javascript关系 ①取元素 ②操作内容 ③操作属性 ④操作 样式

jQuery的min版本和原版功能是一样的,min版主要应用于已经开发成的网页中,而非min版 的文件比较大,里面有整洁的代码书写规范和注释,主要应用于脚本开发过程当中. JQuery是继prototype之后又一个优秀的Javascript库.它是轻量级的js库 ,它兼容CSS3 ,还兼容各种浏览器(IE 6.0+, FF 1.5+, Safari 2.0+, Opera 9.0+),jQuery2.0及后 续版本将不再支持IE6/7/8浏览器.jQuery能够使用户的html页面保持代码和h

2016/1/29 jquery.slicebox.js(上部分)

;(function() { 'use strict'; var $event = $.event, $special, resizeTimeout; $special = $event.special.debouncedresize = { setup: function () { $(this).on("resize".$special.handler()); }, teardown: function () { $(this).off("resize", $s

django + jQuery AJAX POST数据

废话少说,直接代码伺候: views: from django.http import JsonResponse def test_post(request): name = request.POST['name'] city = request.POST['city'] qq = request.POST['qq'] dict = {'name':name,'city':city,'qq':qq} return JsonResponse(dict) def test(request): ret

一文带你了解2018年最流行的前端技术

2018年即将过半,前端开发这个行业又进一个台阶了.找来一个现代前端技术图谱看看,真是吓尿了--宝宝心里苦啊! 点图片看大图 仔细想想,这要是全学会了还得了,也太不切实际了.还是来看看现在流行的是有哪些东西,跟着潮流走总不会错的. 每一个开发者都有着自己的知识和习惯,根据自己的知识和习惯,很容易地理所当然使用哪些工具.通过分析了解行业内开发者对开发工具的使用,这些结果有助于深入了解前端工具的当前趋势.无论你是刚刚开始学习网络开发,还是一位有经验的开发人员,这些分析数据对你的学习或工作都能带来不少

聊一聊前端模板与渲染那些事儿

欢迎大家收看聊一聊系列,这一套系列文章,可以帮助前端工程师们了解前端的方方面面(不仅仅是代码): https://segmentfault.com/blog/frontenddriver 作为现代应用,ajax的大量使用,使得前端工程师们日常的开发少不了拼装模板,渲染模板.我们今天就来聊聊,拼装与渲染模板的那些事儿. 如果喜欢本文请点击右侧的推荐哦,你的推荐会变为我继续更文的动力 1 页面级的渲染 在刚有web的时候,前端与后端的交互,非常直白,浏览器端发出URL,后端返回一张拼好了的HTML串

使用 Raspberry Pi 上的传感器在 Node.js 中创建一个 IoT Bluemix 应用程序

先决条件 一个IBM Bluemix 帐号,一个 Raspberry Pi 2 或 3,一个 PIR 运动传感器 适用于本文的 Github 存储库 如果您是一位精明的 Bluemix 开发人员,您可能只想看看如何在 node.js 中与 IoT 建立连接,或者只想了解如何从此 github 存储库中拉取我的代码. git clone https://github.com/nicolefinnie/iot-nodejs-tutorial 以下是实现与 IBM IoT 平台连接在一起的 4 个 R

2016年4月最佳的20款 jQuery 插件推荐

这个列表包括20个我们觉得是最有用的免费的 jQuery 插件,它们都是最具创新性和最省时省力的解决方案,很多都是现代化的设计和开发中碰到的问题的处理方案.如果你熟悉下面列出的任何插件,请与我们的读者分享您的意见,或者如果您知道的我们还没有包括的话,请与我们分享在下面的评论部分. 您可能感兴趣的相关文章 网站开发中很有用的 jQuery 效果[附源码] 分享35个让人惊讶的 CSS3 动画效果演示 十分惊艳的8个 HTML5 & JavaScript 特效 Web 开发中很实用的10个效果[源码

2016年6月份那些最实用的 jQuery 插件专辑

jQuery 是一个快速.流行的 JavaScript 库,jQuery 用于文档处理.事件处理.动画和 Ajax 交互非常简单,学习曲线也很平坦.2016年6月的 jQuery 插件专辑里,我们选择一些最好的和有用的 jQuery 插件分享给大家. 您可能感兴趣的相关文章 Web 前端开发人员和设计师必读精华文章推荐 精心挑选的优秀jQuery Ajax分页插件和教程 12个让人惊叹的的创意的 404 错误页面设计 让网站动起来!12款优秀的 jQuery 动画插件 8个前沿 HTML5 &

2016 系统设计第一期 (档案一)jQuery radio 取值赋值

MVC代码: <div class="form-group"> <label for="Gender" class="col-sm-2 control-label">性别</label> <div class="col-md-8"> <label class="checkbox-inline"> @Html.RadioButton("Ge