最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - JavaScript: ShowHide <DIV> based on URL string - Stack Overflow

programmeradmin2浏览0评论

I need to show a DIV on two pages (URL's) but not on the others. (I have jQuery on the pages if that helps.). I'm a plete noob so all help is very much appreciate. Thank's!

Case (1) where I want to show the DIV:

  • On the start page, when the web browser address field reads 'www.mydomin'
  • The start page is PHP so I guess the full URL is 'www.mydomin/index.php'

Case (2):

  • 'www.mydomin/index.php?option=_myblog&title.html&Itemid=1&lang=en'
  • WHERE this part is alway the same
  • 'www.mydomin/index.php?option=_myblog&'
  • AND this part is always unique
  • 'title.html&Itemid=1&lang=en

Example

    if (url == 'www.mydomin' or 'www.mydomin/index.php?option=_myblog&') {

 do this

    xxxxxxxx

 else

        nothing

I need to show a DIV on two pages (URL's) but not on the others. (I have jQuery on the pages if that helps.). I'm a plete noob so all help is very much appreciate. Thank's!

Case (1) where I want to show the DIV:

  • On the start page, when the web browser address field reads 'www.mydomin.'
  • The start page is PHP so I guess the full URL is 'www.mydomin./index.php'

Case (2):

  • 'www.mydomin./index.php?option=_myblog&title.html&Itemid=1&lang=en'
  • WHERE this part is alway the same
  • 'www.mydomin./index.php?option=_myblog&'
  • AND this part is always unique
  • 'title.html&Itemid=1&lang=en

Example

    if (url == 'www.mydomin.' or 'www.mydomin./index.php?option=_myblog&') {

 do this

    xxxxxxxx

 else

        nothing
Share asked Nov 3, 2009 at 11:55 LennartLennart 431 gold badge1 silver badge5 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 7

This should work, if I understand the question correctly

var url = document.location.href;

if (url.indexOf('www.mydomin./index.php?option=_myblog&') >= 0) {
  $('#div_id').hide();
} else {
  $('#div_id').show();
}

But really, if you use PHP anyway, you should figure out how to not render the div in the first place.

You can parse the query string and show/hide the div based on the result.

I also think it should be handled from PHP code instead from JavaScript. And div should not be rendered in first place.

You can target a specific query parameter of the URL using window.location.search. Using the below code, you can find an exact match anddisplay/hide the HTML element:

var firstURLParam = window.location.search.substring(1).split('&')[0];
var datGuiEle = document.getElementById("elemID");
if(firstURLParam == "debug"){
    datGuiEle.style.display = "block";
}
else {
  datGuiEle.style.display = "none";
}
发布评论

评论列表(0)

  1. 暂无评论