我有一个DIV
通过JQUERY
Ajax 调用刷新的页面,但随后我丢失了javascript
包含在“head”页面中的所有代码。我需要将它们包括两次吗?在我看来,这对性能不利,因为您必须javascript
在它已经在客户端页面上时再次加载它。如何包含文件以便在 Ajax 刷新后它们也可用
$(document).ready( function() {
$("#prijzen_huidige_jaar").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
$.ajax({
type:"POST",
url:"prijzen_huidige_jaar_test.php",
cache: false,
data: $("#prijzen_huidige_jaar").serialize(),
success:function(data){
$("#test").replaceWith(data);
}
});
});
});
包含在主页中:
<script type="text/javascript" src="https://localhost/include_bestanden/javascript/prijzen.js"></script>