Сообщение от vertmann
|
пробовал так:
var city_code = this.attr('value');
но тоже не получается
|
Когда же ты перестанешь "пробовать", а начнешь читать книжки?
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<link rel="stylesheet" type="text/css" href="tmp.css" />
-->
<style type="text/css">
</style>
<script type="text/javascript">
$(function (){
$(document).on('click', '.city_code', function() {
var city_code = $(this).attr('value');
alert(city_code);
});
});
</script>
</head>
<body>
<a href="javascript:void(0);" class = "select-city">вот тут должен выводится выбранный город</a>
<div class = "city-list" style = "">
<ul class = "cities" name="my_city_code">
<li>
<a href="javascript:void(0);" class = "city_code" name = "city_code" value = "{{$ac.name}}{{$ac.type}}">
Бивас, тест!
</a>
</li>
</ul>
</div>
</body>
</html>