runrun
小狐狸
小狐狸
  • UID7379
  • 注册日期2005-07-17
  • 最后登录2011-02-05
  • 发帖数6
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
阅读:3213回复:5

firefox3.0.1关于标题显示的问题

楼主#
更多 发布于:2008-08-10 21:46
我用的是firefox3.0.1,最近发现一个问题,比如打开百度,输入http://www.baidu.com,然后标签上显示的就是http://www.baidu.com/,而不是“百度一下,你就知道”,firefox窗口最上面的标题栏也只是Mozilla Firefox,正常的应该是"百度一下,你就知道 - Mozilla Firefox",但是重新输入两三次网址,就会正常,打开其他网站有时也会出现这个问题,但有时不会,如何解决?
盘儿净
火狐狸
火狐狸
  • UID16250
  • 注册日期2006-12-15
  • 最后登录2017-02-04
  • 发帖数147
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
1楼#
发布于:2008-08-10 21:46
搭车问下,如何在非全屏状态下隐藏FF的标题栏?
蓝色的吉他
非常火狐
非常火狐
  • UID11286
  • 注册日期2006-01-24
  • 最后登录2017-03-27
  • 发帖数647
  • 经验17枚
  • 威望0点
  • 贡献值8点
  • 好评度0点
2楼#
发布于:2008-08-10 21:46
盘儿净:搭车问下,如何在非全屏状态下隐藏FF的标题栏?回到原帖


最大化下隐藏标题栏,用鼠标手势执行代码
function hideChrome() {
  if (navigator.platform == "Win32") {
    window.moveTo(0,0);
    window.maximize();
    document.getElementById("main-window").setAttribute('hidechrome','true');
    // preserve small area for taskbar to appear
    window.resizeTo(screen.availWidth, screen.availHeight-2);
  } else {
    document.getElementById("main-window").setAttribute('hidechrome','true');
    window.moveTo(0,0);
    window.resizeTo(screen.availWidth, screen.availHeight);
    window.maximize();
  }
}

// COMMENT OUT THE NEXT LINE TO START BROWSER NORMALLY
hideChrome();

this.leftclick   = function(evt){

  function showChrome() {
    if (navigator.platform == "Win32") {
      document.getElementById("main-window").setAttribute('hidechrome','false');
      window.resizeTo(screen.availWidth, screen.availHeight);
      window.maximize();
      window.resizeTo(screen.availWidth, screen.availHeight);
    } else {    
      document.getElementById("main-window").setAttribute('hidechrome','false');
      window.maximize();
      window.maximize();
    }
  }

  function toggleChrome() {
    var mainWindow = document.getElementById("main-window");
    var isFullScreen = mainWindow.getAttribute('hidechrome');

    if (isFullScreen == "" || isFullScreen == 'false') {
      hideChrome();
    } else {
      showChrome();
    }
  }

toggleChrome();
}

this.setAttribute('onclick', 'gQuot(event, this)'); // Calls the Global MouseClick handler gQuot

this.style.opacity = '.65';
this.setAttribute('onmouseover', 'custombuttons.ButtonBrt(event);' );
this.setAttribute('onmouseout', 'custombuttons.ButtonDim(event);' );

this.setAttribute("author",'nicholas'); // Stores Author.
this.setAttribute("version",'20080306.00');                                                 // Stores Version.
this.setAttribute("homepage",                                                 // Stores Homepage.
                  "http://custombuttons2.com/forum/viewtopic.php?f=35&t=" +
                  "523");
this.setAttribute("dependency",'FF 2.0.*,CB 2.0.*'); // Stores Dependency.
this.setAttribute("status",'Complete'); // Stores Devstatus.
this.setAttribute("public",true); // Stores Public.

这是在CUSTOM BUNTTONS2里最大化隐藏标题栏的代码
不过在手势里用无法恢复,看看谁能把它改下
要不就只能安装CUSTOM BUNTTONS2用安钮的方式来用了
We may be human,but we're still animals.
cdooo
非常火狐
非常火狐
  • UID8445
  • 注册日期2005-09-07
  • 最后登录2017-02-26
  • 发帖数932
  • 经验29枚
  • 威望0点
  • 贡献值18点
  • 好评度1点
  • 社区居民
  • 忠实会员
3楼#
发布于:2008-08-10 21:46
disable tab mix plus
ccc
runrun
小狐狸
小狐狸
  • UID7379
  • 注册日期2005-07-17
  • 最后登录2011-02-05
  • 发帖数6
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
4楼#
发布于:2008-08-10 21:46
没用啊,就算是开firefox安全模式,不加在任何插件都不行
无聊望见了犹豫
千年狐狸
千年狐狸
  • UID3586
  • 注册日期2005-03-04
  • 最后登录2017-02-12
  • 发帖数1679
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
5楼#
发布于:2008-08-10 21:46
不要用安全模式,新建一个乾净的profile试试
游客

返回顶部