2013-01-16 100 views

回答

2

如果有非輸入或textarea的你需要使用text()html()代替val()

$("strong:contains('Logged in as:')").text(function(i,w){return w.replace("Logged in as:","Hello");}); 

$("strong:contains('Logged in as:')").html(function(i,w){return w.replace("Logged in as:","Hello");}); 
1

個假設

$("strong:contains('Logged in as:')") 

工作正常

使用:

$("strong:contains('Logged in as:')").text("Hello") 
0

試試這個

$( 「強:包含( '身份登錄:')」)。HTML(」你好」);

0

不久前我遇到了類似的問題,奇怪的是我通過打破2行中的語句來解決它。第一個將值賦給var,第二個調用val

相關問題