假設我有兩個html文件,one.html和two.html。我想包括在one.html two.html,所以我這樣做,是這樣的,包括另一個html文件中的html文件和JS
<script>
$(function(){
$("#middle").load("two.html");
});
</script>
我有一個腳本文件說,這我加載在one.html年底爲
的script.js<script src="scripts/script.js" ></script>
在那個文件中,我正在編寫的函數在two.html的元素上實現。但是這些函數並沒有被應用於two.html。那麼,做這件事的正確方法是什麼?
可能重複[Event binding on dynamic created elements?](http://stackoverflow.com/questions/203198/event-binding-on-dynamically-created-elements) – Quentin