私はjQueryを使用してhref値を取得しようとしています:
<html>
<head>
<title>Jquery Test</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("a").click(function(event) {
alert("As you can see, the link no longer took you to jquery.com");
var href = $('a').attr('href');
alert(href);
event.preventDefault();
});
});
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>
しかし、それは機能しません。どうして?
正確に何が機能しなかったかを教えてください。警告は空でしたか?2つのアラートを受け取りましたか?jsエラー?それは私のために働いています...
—
ベン・ロウ
upss ...、ごめんなさい。問題はキャッシュをクリアすることです
—
Adi Sembiring 2010年
—
LCJ