javascript 的replace替代replaceAll

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> New Document </title>
  <meta http-equiv=content-type content="text/html;charset=utf-8">
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
 </head>

 <body>
  <script>
  var tdTmp="<td align='$' abbr='$' class='$'></td>";
     cols=['aa','bb','cc'];
      j=0;

  var tt=tdTmp.replace(/\$/g,function(){
     return cols[j++]; });

	 alert(tt);
  
  </script>
 </body>
</html>

 

 

你可能感兴趣的:(JavaScript)