jQuery を使用して、stringA または stringB が特定の css クラスおよび ID に該当する場合、どのようにチェックして置換しますか?
stringA = " | "
stringB = "|"
css = .login #bav
<div class="login">
<p id="nav">
<a href="#">oh ya</a> |
<a href="#" title="Password Lost and Found"></a>
</p>
</div>
私はこれのバリエーションを持っています:
jQuery(document).ready(function($) {
$(".login #nav").replaceText( /testA|testB/gi, "fooBar" );
});
});