jquery核心的学习进程一

Posted 顺子2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery核心的学习进程一相关的知识,希望对你有一定的参考价值。

<html>
<head><title>jquery_core</title>
<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
<script>
//var $=jQuery();
console.log("返回一个空的jquery对象:"+jQuery());
var aa=$("div>p");
aa.each(function(i){
console.log(aa[i].text());
});
</script>
</head>
<body>
<div><p>div里面穿的一个段落p</p></div>
<form action="#" method="GET">
<input type="text" value="input01">
<input type="radio" value="男">男</input>
</form>
</body>
</html>

以上是关于jquery核心的学习进程一的主要内容,如果未能解决你的问题,请参考以下文章

Windows核心编程之核心总结(第四章 进程)(2018.6.17)

操作系统学习笔记 进程与线程模型

Python多线程学习(上)

Windows核心编程之核心总结(第四章 进程)(2018.6.8)

python学习_day32_并发编程之多进程

python学习_多进程