jQueryコア関数
11340 ワード
<script type="text/javascript" src="../../js/jquery-1.10.1.js">script>
<script type="text/javascript">
/*
1. : ,
2.
3. " my atguigu "
*/
$(function(){//
$("#btn").click(function(){
alert($(this).html())
$('
').appendTo("div");
});
var arr = [2,4,8];
$.each(arr, function(index,value) {
console.log("index="+index+", value="+value);
});
var str = " rainbow cai";
console.log($.trim(str))
})
/* 1. : , */
//1.1). : DOM ,
$(function () { //
// 1.2). : , jQuery
$('#btn').click(function () { //
// this ? dom (
// alert(this.innerHTML)
// 1.3). DOM : dom jQuery
alert($(this).html())
// 1.4). html ( ): jQuery
$('
').appendTo('div')
})
})
/* 2. */
var arr = [2, 4, 7]
// 1). $.each() :
$.each(arr, function (index, item) {
console.log(index, item)
})
// 2). $.trim() :
var str = ' my atguigu '
// console.log('---'+str.trim()+'---')
console.log('---'+$.trim(str)+'---')
script>
body>
html>