Сообщение от Lutidza
|
получить значение цены без валюты
|
Как вариант...
<!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">
$(document).ready(function (){
var txt=$('.productPrice > span').text();
txt=txt.replace(/[^0-9]/gm,'');
alert('>'+txt+'<')
});
</script>
</head>
<body>
<span class="productPrice">
<span itemprop="price">
550
<span class="currency">руб</span>
</span>
</span>
</body>
</html>