ページ内の要素<a>
に href attr が含まれていることを確認/dailyTickets/front/user.form.php
し、それを に変更するにはどうすればよい/dailyTickets/front/contacts.form.php
ですか?
パス (user.form.php) の後に URL クエリ パラメーター (id) を保持することに注意してください。たとえば、次のように変更します。
<a id="User_648_648" href="/dailyTickets/front/user.form.php?id=648">ConseillerUser</a>
これに:
<a id="User_648_648"href="/dailyTickets/front/contacts.form.php?id=648">ConseillerUser</a>
私はこれで始めていますが、それを終了する方法がわかりません:
$('a[href*="dailyTickets/front/user.form.php"]').each(function () {
if ($(this).children().length == 0) {
...........
}
});