JQuery学习29篇(特效只是DOM操作+想像力)

这一生的挚爱 提交于 2020-01-06 21:57:11

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JQuery学习29篇(特效只是DOM操作+想像力)</title>
<link rel="stylesheet" type="text/css" href="inputAndDiv.css">
<style type="text/css">
li{
/*     float: left; */
    float: none;
    width: 100px;
    height: 100px;
	text-align: center;
    line-height: 30px;
    background: red;
    color: white;
    border-radius: 100%;
    list-style:none;
}
</style>
</head>
<body style="background-color: #CCE8CF;">
	<h3 style="color: #cd1636;">JQuery学习29篇(特效只是DOM操作+想像力)</h3>
	<div style="border-color: Navy;">
		<p>ok</p>
		江西省赣州市于都县
	</div>
	<ul><li>yes</li></ul>
	<input type="button" value="把红色圆圈加入到div层中" οnclick="fun1();">
	<br/><br/>
	<input type="button" value="向div层中追加内容" οnclick="fun2();">
	<br/><br/>
	<input type="button" value="标题改为海军蓝并且字体变大" οnclick="test();">
	<br/><br/>
</body>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
//
function fun1(){
	$('ul').appendTo('div');
}

//
function fun2(){
	$('div').append('<font color="red">特产有:赣南脐橙</font>柿子饼,番薯干');
	$('div').append('酸枣糕,珠子粉');
	$('div').append('<font color="blue">酸萝卜</font>');
	console.log($('<p>hello,china</p>').appendTo('div')[0].innerHTML);
	console.log($('<p>I Love China</p>').appendTo('div').html());
	console.log($('<p>中国</p>')[0].innerHTML);
	console.log($('<p>中华</p>').html());
	console.log($('aaa'));
}

//
function test(){
	var a = window.document.getElementsByTagName('h3')[0].innerHTML;
	console.log(a);
	//window可以省略
	var b = document.getElementsByTagName('h3')[0].innerHTML;
	console.log(b);
	var b = document.getElementsByTagName('h3')[0].style.color = 'Navy';
	document.getElementsByTagName('h3')[0].style.fontSize = '32px';
}
</script>
</html>

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!