好的,我看到了这个教程http://css-tricks.com/dynamic-page-replacing-content/,实际上很酷!我的问题是流程,我有一个页面,不仅有内容,还有特定的 javascript 内容和 css。有没有办法动态加载这些文件,对吗?如果我在页面上有硬编码,我将如何加载该 css/js 脚本?
提前致谢。
[编辑]
一些代码:
<html>
<head>
<script type="text/javascript" src="..."></script>
<script type="text/javascript">
$(document).ready(
alert('the document has finished loading!!');
// do form validation and send
)
</script>
</head>
<body>
Please Full the necesary (*) Fields
<form method="post" action="testing.php" id="test" name="test">
(*)<input type="text" name="fullname" />
<input type="submit" value="Send" />
</form>
</body>
</html>
假设我想动态加载该页面并加载放置在标题上的验证和相关 javascript。应该加载读取标题的文件吗?我怎么知道哪个已经加载了?
感谢您的回答!
“我猜他的意思是硬编码的、静态的。——Utkanos”——已编辑