使用innerHTML更改页面上的所有文本

时间:2015-05-15 12:44:53

标签: javascript php html innerhtml php-5.5

我想更改页面上的所有文字,有价值"是"。如何更改网页上的所有"是" - 值?

我只是希望如果文本的值=&#34;是&#34;,则必须将其替换为<span class='ic ic-normal ic-icon-yes'></span>

这是我目前的代码:

<?php
    $_helper = $this->helper('catalog/output');
    $_product = $this->getProduct()
?>
<?php if($_additionalgroup = $this->getAdditionalData()): ?>
<section id="additional">
<div class="box-collateral box-additional">
    <h2><?php echo $this->__('Additional Information') ?></h2>

    <?php $i=0; foreach ($_additionalgroup as $_additional): $i++; ?>
        <h3><?php echo $this->__( $_additional['title'] )?></h3>
        <table class="data-table" id="product-attribute-specs-table-<?php echo $i?>">
            <col width="25%" />
            <col />
            <tbody>
            <?php foreach ($_additional['items'] as $_data): ?>
             <?php $_attribute = $_product->getResource()->getAttribute($_data['code']);
    if (!is_null($_product->getData($_attribute->getAttributeCode())) && ((string)$_attribute->getFrontend()->getValue($_product) != '')) { ?>
                <tr>
                    <th class="label"><?php echo $this->htmlEscape($this->__($_data['label'])) ?></th>
                    <td class="data"><?php echo $_helper->productAttribute($_product, $_data['value'], $_data['code']) ?></td>
                </tr>
            <?php } ?>
            <?php endforeach; ?>
            </tbody>
        </table>
        <script type="text/javascript">decorateTable('product-attribute-specs-table-<?php echo $i?>')</script>
    <?php endforeach; ?>

</div>
</section>
<?php endif;?>

td-class中的文本是动态加载的。 元素没有任何唯一ID。

我怎样才能做到这一点?

4 个答案:

答案 0 :(得分:2)

如果我正确理解您的问题,您希望使用某种模式更改包含等于“是”的文本的所有元素。试试这个脚本来实现:

$('*').filter(function() {
    return $(this).text()=='Yes'
}).each(function() {
    this.textContent = "<span class='ic ic-normal ic-icon-yes'></span>"
}); 

或纯粹的Javascript:

var allElements = document.body.getElementsByTagName("*");
for(var i = 0; i < allElements.length; i++) {
    var text = allElements[i].innerHTML;
    if (text == 'Yes') {
        allElements[i].innerHTML = "<span class='ic ic-normal ic-icon-yes'></span>";
    }
}

答案 1 :(得分:1)

使用<body>更改<span class='ic ic-normal ic-icon-yes'></span>标记每个innerHTML 中的文字“是”:

var body = document.getElementsByTagName("body");
var children = body[0].children;
for(var i = 0; i < children.length; i += 1) {
    var regex = new RegExp("Yes", 'gi');
    var newString = children[i].innerHTML.replace(regex, "<span class='ic ic-normal ic-icon-yes'></span>");
    children[i].innerHTML = newString;
}

Demo

答案 2 :(得分:0)

如果我正确地阅读了这个内容,那么您的目标是带有ID的元素,因此 只有一个项目会被更改。如果您要定位由类选择的元素数组。查看this fiddle

  var yes_divs = document.getElementsByClassName('yes');
    for (var i = 0; i < yes_divs.length; i++) {
        yes_divs[i].innerHTML = 'yes';
    }

答案 3 :(得分:0)

如果您的代码根据操作动态加载,那么您可以尝试每秒执行一次脚本:

window.setInterval(function(){
  document.getElementById("Yes").innerHTML = "<span class='ic ic-normal ic-icon-ja'></span>";
}, 1000);

经过测试:https://jsfiddle.net/dccom5Lv/