2

我想在以下代码中将(拒绝访问。请登录或注册。)的文本更改为“您无权访问” :-

<div class="messages error">
<h2 class="element-invisible">Error message</h2>
Access denied. Please Login or Register.
</div>

我尝试在 Ready Function 中使用以下代码,但它无法正常工作。

$("div.messages").text(function () {
        console.log($(this).text());
        return $(this).text().replace("Access denied. Please Login or Register.", "You are not authorized to access"); 
    });

谢谢。


有没有其他方法可以做到这一点?它给了我错误

Uncaught TypeError: Cannot set property 'nodeValue' of undefined ... 
4

1 回答 1

2
$("div.messages h2")
      .prop('nextSibling')
      .nodeValue = "You are not authorized to access";

http://jsfiddle.net/ZwLKZ/

$("div.messages").contents().filter(function() {
     return this.nodeType === 3 && $.trim(this.nodeValue) !== ''; 
}).get(0).nodeValue = "You are not authorized to access";
于 2013-04-25T16:53:30.140 回答