<html>
<head>
<title>jQuery Hello World</title>
<script src="http://code.jquery.com/jquery-2.1.0.min.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
$("#msgid").html("This is Hello World by JQuery");
});
</script>
This is Hello World by HTML2
<div id="msgid">
</div>
</body>
</html>
//在chrome中我得到两个msgs但只在jboss服务器中“这是HTML2的Hello World”这个msg被打印出来。 “这是JQuery的Hello World”这个消息没有显示出来..如果有人帮助我......我只是对这些技术更新鲜了.. Thanxx ..