Сообщение от rslab
|
значение author_id
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!--
<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 (){
$('.author').each(function (){
var val=this.href;
alert(val.split(/author_id=/)[1]);
});
});
</script>
</head>
<body>
<a class="author" href="/admin author_id=1">Автор: Admin</a>
</body>
</html>