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
여기에서 바이올린 : jsfiddle.net/LijoCheeran/t1xs4wo7
—
LCJ