基本的に、私は人々がリンクをクリックしたときにリモートコンテンツをフェッチしようとしています。
Coda HTMLプレビューウィンドウで動作しますが、実際のブラウザ(Chrome / FF / Safari)でhtmlをテストすると、動作せず、リモートコンテンツがフェッチされません。(alert('url is' + url);リンクをクリックするとポップアップするので、jqueryは機能していると確信しています)
有線です。なにが問題ですか?
以下の私のコード
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sample</title>
<link type="text/css" href="http://localhost/jquery-ui-1.8.20.custom/css/smoothness/jquery-ui-1.8.20.custom.css" rel="stylesheet" />
<script type="text/javascript" src="http://localhost/jquery-ui-1.8.20.custom/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://localhost/jquery-ui-1.8.20.custom/js/jquery-ui-1.8.20.custom.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#links a').click(function(e) {
var url = $(this).attr('href');
alert('url is ' + url);
$('#content').load(url);
e.preventDefault();
});
}); // document ready
</script>
</head>
<body>
<ul id="links">
<li><a href="http://google.com">Google</a></li>
<li><a href="http://yahoo.com">Yahoo</a></li>
</ul>
<div id="content"></div>
</body>
</html>
助けてくれてありがとう。