相关考题
-
单项选择题
可以引入线上的jquery,方法如下()
A.<head> <script href="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script></head>
B.<head> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script></head>
C.<head> <link src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </link></head>
D.<head> <a src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </a></head> -
单项选择题
读取本地jquery库的方式是()
A.<head><script src="my_jquery_functions.js"></script> </head>
B.<head><a src="my_jquery_functions.js"></a> </head>
C.<head><link src="my_jquery_functions.js"></link> </head>
D.<head><script href="my_jquery_functions.js"></script> </head> -
判断题
$("p").click(function(){ $(this).hide();});当点击事件在某个 元素上触发时,隐藏当前的 元素。
