关于jquery的一个新手问题-
为什么这样写 代码不起作用:
<script src="Scripts/jquery-1.4.1.js" type="text/javascript">
$(function () {
$("#un").click(function () { alert($("#txt").val()); });
$("div").click(function () { $(this).hide("slow"); });
});
</script>
这样写代码就能起作用,求教这个原理是为什么?
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script >
$(function () {
$("#un").click(function () { alert($("#txt").val()); });
$("div").click(function () { $(this).hide("slow"); });
});
</script>
------解决方案--------------------因为上面这个jquery-1.4.1.js没调过来