jQuery 修改 span 里的内容
<script type="text/javascript">
function myOnload() {
$(document).ready(function () {
$('.rgPagerLabel').each(function () {
var myvalue = '页码:';
$(this).html(myvalue);
});
});
}
myOnload();
</script>
function myOnload() {
$(document).ready(function () {
$('.rgPagerLabel').each(function () {
var myvalue = '页码:';
$(this).html(myvalue);
});
});
}
myOnload();
</script>
效果图: