Сообщение от NoobJs
|
Как вот по названию ссылки не кликнуть по ней, а взять её url и присвоить переменной?
|
Это как с color...
<!DOCTYPE html>
<html ng-app>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="http://code.angularjs.org/1.1.4/angular.min.js"></script>
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
var url=$('a:contains("Test")').eq(0).attr('href');
alert(url);
});
</script>
</head>
<body>
<a href='url_ссылки'>Test</a>
</body>
</html>