jsp为什么不能执行jquery的$(document).ready的方法
好像有部分浏览器不支持,你试试下面这几种:$(function(){});$(window).ready(function(){})$(document).ready(function(){})$(document.body).ready(function(){})
jQuery实现html表格动态添加新行的方法
jQuery实现动态添加行的方法
<script src="jquery-1.6.2.min.js"></script>
<script type="text/javascript">
<!-- jQuery Code will go underneath this -->
$(document).ready(function () {
// Code between here will only run when the document is ready
$("a[name=addRow]").click(function() {
// Code between here will only run
//when the a link is clicked and has a name of addRow
$("table#myTable tr:last").after('<tr><td>Row 4</td></tr>');
return false;
});
});
</script>
</head>
<body>
<table id="myTable">
<tr><td>Row 1</td></tr>
<tr><td>Row 2</td></tr>
<tr><td>Row 3</td></tr>
</table>
<a href="#" name="addRow">Add Row</a>
</body>
</html>
jquery中 $() $. 都是什么作用代表了什么
"$"-->指标识符,让浏览器知道这是jquery "$(function(){})"-->指等同于$(document).ready(function(){具体方法体});作用是告诉浏览器当DOM结构完成后便执行这个方法,不同于onload,onload是内容加载完成后