这是我的 XHTML 页面的代码。jQuery/js/
在我的应用程序的文件夹中。所有其他页面的验证都是通过使用同一个文件的 jQuery 完成的,但是我无法在我创建的这个测试页面上运行简单的 jQuery 代码。这是页面的代码:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
<script type="text/javascript" src="js/jquery.js"></script>
<script>
$(document).ready(function () {
$("p").text("The DOM is now loaded and can be manipulated.");
});
</script>
<br/><br/><br/>
<p>Not loaded yet.</p>
<input id="pedram" type="text" onclick="alert('hi');"/>
</h:body>
</html>
我也尝试过使用CDATA
标签。我还将脚本移到了文档的开头。
唯一正常工作的是alert()
我放入onclick
事件中的那个。没有其他工作。
请告诉我我做错了什么。