如何更改jQuery mobile标头中的元素?

时间:2019-04-17 22:27:34

标签: jquery jquery-mobile

我正在使用jQuery mobile 1.4.5,并试图更改标头中元素的链接颜色。由于jQuery mobile的行为不会再次加载标题以创建流畅的体验,因此颜色不会更改。

例外,如果我添加data-ajax =“ false”,则它将更改。但是应该有一种避免这种情况的方法。

标题中的我的导航:

<nav>
    <a href="/test/" id="nav_test" class="ui-link">TEST</a>
    <a href="/other/" id="nav_other" class="ui-link">OTHER</a>
</nav>

将活动链接的颜色设置为红色的jQuery代码:

$( document ).ready(function() {
  console.log('nav_' +  window.location.pathname.split('/')[1]);
  $('#nav_' +  window.location.pathname.split('/')[1]).css('color', '#7e000b');
});

如果我将data-ajax =“ false”添加到href标签中,则此方法有效。

如何设置颜色而无需再次加载整个标题?

1 个答案:

答案 0 :(得分:0)

尝试一下:)

$().ready(function(){
  let location = window.location.pathname.split('/')[1];
  $('.ui-link').css('color', 'rgb(0, 0, 238)'); // reseting colors of all links
  switch (location) {
    case "test":
      $("#nav_"+location).css('color', '#7e000b')
      break;
    case "other":
      $("#nav_"+location).css('color', '#7e000b')
      break;
    default:
  }
  // onclick handler in case you arent doing an actual redirect (onepager)
  $('.ui-link').click(function(){
    location = $(this).id.split('_')[1];
    $('.ui-link').css('color', 'rgb(0, 0, 238)'); // reseting colors of all links
    $(this).css('color', '#7e000b'); // updating this link color
  });
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<nav>
    <a href="/test/" id="nav_test" class="ui-link">TEST</a>
    <a href="/other/" id="nav_other" class="ui-link">OTHER</a>
</nav>