日期:2014-05-16 浏览次数:21131 次
<div id="scs">
abd<input type="radio" value="1" name="a" />文本<input value="A" type="text" name="a" />abdsc <input type='text' name="b" value="B" />功能开发中……
<input name=c type=text value="C" />其他可能没有值哦<input name=d type="text" />
</div>
<script type="text/javascript">
window.onload = function(){
var html = document.getElementById("scs").innerHTML;
html=html.replace(/<input [^>]*type=[\'\"]text[\'\" ][^>]*>/gi,function(a){
var v = a.match(/value="([^\"])"/);
return "<span style='color:red'>"+(v?v[1]:"")+"</span>";
});
document.getElementById("scs").innerHTML=html;
}
</script>