我似乎无法让 jQuery 加载功能正常工作。
我的 HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="Jquery_script.js"></script>
<script>$(document).ready(function(){ladda(); });</script>
</head>
<body>
<form namne="load">
<fieldset>
<legend>load</legend>
<table>
<tr>
<td><div id="L1"><h1>vill du ändra denna text</h1></div></td>
</tr>
</table>
<button id="load_text">ändra</button>
</fieldset>
</form>
</body>
</html>
问题是加载按钮不加载外部内容
javascript文件:
(function($){
ladda = function() {
$("#load_text").click(function(){
$("#L1").load("innehall.txt", function() {
alert('Load was performed.');
});
});
};
})(jQuery);
和仅外部 .txt 文件
<h2>du har ändrat innehållet</h2>
<p>detta är det nya innehållet</p>
请帮助我弄清楚为什么 .txt 文件在按下按钮“ändra”时没有替换 div id="L1" 标签。