举例:
<div goods-hq="CU">32389.00 <i class="fa fa-long-arrow-up"></i></div>
现在我们来取一个这个价格。
jquery的写法:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<span id="mytest">测试</span>
其他情况:
<div id="test" width="50">测试</div>
int w = $("#test").attr("width");
alert(w);
js的写法:
<div id="xxx" ***="">测试</div>
$a = document.getElementById("xxx").attributes["***"].value;
alert(a);