问题标签 [title]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
13 回答
210297 浏览

android - 设置标题背景颜色

在我的 android 应用程序中,我希望标准/基本标题栏改变颜色。

要更改您拥有的文本颜色setTitleColor(int color),有没有办法更改栏的背景颜色?

0 投票
3 回答
10426 浏览

iphone - NavigationItem setTitle 不适用于二级 UIViewController

在我的应用程序中,我有一个 UINavigationControllers 像这样初始化的 UITabBarController

newsViewController 是一个 UIViewController。当我按下标签栏中的按钮以显示带有 newsViewController 的导航项时,导航栏中的标题设置正常。在 newsViewController 中,我有一个在 init 之后调用的方法设置。在设置方法中,我像这样设置标题 [[self navigationItem] setTitle:[category_c title]];

现在问题来了,在我的 newsViewController 中,我有一个 tableView,当我触摸一个单元格时,我想推送一个带有所选新闻的 UIViewController,并在导航栏中显示标题。

在 UIViewController 中,我有相同的设置方法,可以像上面那样设置标题。问题是没有显示。导航项不为空,因为我可以调用self.navigationItem.hidesBackButton = YES;并且它每次都隐藏后退按钮但不显示标题。

当触摸单元格时,我像这样创建并推送新闻 UIViewController

newsViewController 中的 setup 方法如下所示:

在 newsViewController 我有 viewDidLoad 并试图在那里设置标题但没有成功。

  • (void)viewDidLoad { self.navigationItem.title = @"Test"; [超级视图DidLoad]; }

如果在[self.navigationController pushViewController: newsViewController animated:YES]; 我编写[[self.navigationController.viewControllers objectAtIndex:0] setTitle:@"myTitle"];了包含 UITableView 的 UIViewController 之后,得到的标题是 myTitle 而不是我在触摸单元格时推送的 newsViewController。

任何指针?我不明白为什么标题设置不正确。

EDIT2:在阅读了更多内容并使用调试器逐步浏览我的代码并将rootviewcontrollers与childViewControllers进行比较之后,我观察到在设置self.title = @“title”后childViewController的viewDidLoad方法中,navigationItem是创建所以这不是零的情况。在调试器中,当我展开 _navigationItem 变量时,字段 _navigationBar 在离开 viewDidLoad 后为零,在 rootViewControllers 中,navigationBar 不是 NULL 并且标题在那里。我读到,如果 navigationBar 为 null,标题将不会显示。在图像中是我在调试器中看到的。alt text http://img138.imageshack.us/img138/1513/picture2bq.png现在我正在朝这个方向搜索。

EDIT1:下面是 parentViewController、firstChildViewController 和第二个 ChildViewController 的代码。parentViewController 被查看(标题没问题)。我在导航栏上按下一个按钮,调用 BearbeitenAction -> 第一个孩子被推(不显示标题)。在 firstChildViewController 的导航栏上,我有一个按钮,按下该按钮会在堆栈上推送一个新的 ViewController(secondChildViewController)。第二个 ChildViewController 的标题不行。当我按下 Back 时,firstChildViewController 的标题显示为 Ok。

父视图控制器:

代码中的 firstChildViewController = berbeitenViewController:

代码中的 secondChildViewController = searchViewController

0 投票
4 回答
3668 浏览

c# - c#: 如何使用 P/Invoke 更改 FolderBrowserDialog 的标题?

FolderBrowserDialog 显示文本“浏览文件夹”作为标题。

这个链接说使用 P/Invoke 我们可以做到这一点。那是什么?如何为此使用 P/Invoke?

还有其他方法可以改变吗?

0 投票
3 回答
1665 浏览

iphone - UINavigationItem 标题标签设置宽度?

在我的 UIViewController 中,我动态设置了我的标题,所以我不知道将在导航栏中显示的字符串的长度,因此我有当前的情况: alt text http://img94.imageshack.us/img94/ 2484/图片3vf.png

有没有办法设置在导航栏中显示标题的标签的宽度?或者我应该想到一个,将文本长度与之比较,如果它太长,我应该调整它的大小并显示著名的“...”?

我知道我可以将 UILabel 作为子视图添加到导航栏,但我不想使用该解决方案。

谢谢!

0 投票
7 回答
16042 浏览

asp.net - 如何在 ASP.NET 3.5 中从网页内容页面设置页面标题

我已经阅读了很多关于如何执行此操作的帖子/文章,但我仍然没有从内容页面获取页面标题设置。我的页面呈现正常,但我无法从内容页面获取标题集(所有页面都根据母版页设置了标题)。这是我的母版页的代码隐藏:

这是母版页的其余部分:

然而,我想在网页内容页面中建立页面的值,并将其放置在我的测试内容页面中:

奇怪的是,我无法让调试器在内容页面的上面一行停止 - 只能在母版页的相应行上停止。显然,我对此感到困惑。

我读过还有其他方法可以做到这一点,但这似乎可以从我在 Scott Mitchell 的教程中读到的内容:Dynamicly setting the Page Title in ASP.NET。具体来说,我试图从文章中遵循这一点: “此外,如果您正在使用母版页,则此代码可以按照所写的方式从母版页或使用母版页的 ASP.NET 页面工作。在这种情况下, 该区域应该在母版页中定义,但是 ASP.NET 页面仍然可以通过 Page.Header 访问它。”

0 投票
2 回答
5828 浏览

iphone - 将 UIWebView 标题发送到 UINavigationBar

我正在尝试将 UIWebView 页面标题发送到 UINavigationBar。

如果用户单击链接 UINavigationBar 显示后退按钮但如果在主页上隐藏后退按钮,我也希望它。

0 投票
4 回答
812 浏览

html - 如何抑制 AREA 标签的 alt 工具提示弹出?

我正在使用包含很多<area>标签的图像映射。我alt在 IE 中作为工具提示弹出的每个区域都有属性。我们可以抑制这种行为吗?我尝试使用空title属性,但它不起作用。

编辑:我需要其他屏幕阅读器的 alt 属性。所以我不能让它空着把它删除。我只是想抑制它在 IE 中的弹出行为。是

0 投票
2 回答
11934 浏览

python - 如何在python中设置程序标题

我一直在构建一个大型 python 程序,想知道我将如何设置程序的标题?在 Mac 上,具有焦点的程序标题显示在屏幕的左上角,紧挨着苹果菜单。目前这只显示“Python”这个词,但我当然想把我的程序的标题放在那里。

0 投票
1 回答
873 浏览

php - and window.parent</h1> <div id="body"><p>my site is a design on index.php and then a frame on it.. Now, i want to do so the titles changes When you browse to eg. Videos.php.</p> <p>So how should i do this with window</a> </h3> <div class="s-post-summary--content-excerpt"> </div> <div class="s-post-summary--meta"> <div class="s-post-summary--meta-tags tags js-tags t-cñ t-ûnet t-aspûnet-mvc t-aspûnet-mvc-4 t-actionfilterattribute"> <a href="/tags/php" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">php</a><a href="/tags/window" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">window</a><a href="/tags/parent" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">parent</a><a href="/tags/title" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">title</a> </div> <div class="s-user-card s-user-card__minimal"> <div class="s-user-card--info"> <div class="s-user-card--link d-flex gs4"> </div> </div> <time class="s-user-card--time" style="margin-left:5px;"> <span title="2022-04-18 08:34:11Z" class="relativetime"> 2010-02-27T14:54:03.343</span></time> </div> </div> </div> </div><div id="question-summary-71909431" class="s-post-summary js-post-summary" data-post-id="71909431" data-post-type-id="1"> <div class="s-post-summary--stats js-post-summary-stats"> <div class="s-post-summary--stats-item s-post-summary--stats-item__emphasized" title="Score of 0"> <span class="s-post-summary--stats-item-number">0</span> <span class="s-post-summary--stats-item-unit">投票</span> </div> <div class="s-post-summary--stats-item " title="1 answers"> <span class="s-post-summary--stats-item-number">1</span> <span class="s-post-summary--stats-item-unit">回答</span> </div> <div class="s-post-summary--stats-item " title="1320 views"> <span class="s-post-summary--stats-item-number">1320</span> <span class="s-post-summary--stats-item-unit">浏览</span> </div> </div> <div class="s-post-summary--content"> <h3 class="s-post-summary--content-title"> <a href="/questions/2355413" class="s-link">iphone - 在 iphone 的地图中显示当前位置的标题</a> </h3> <div class="s-post-summary--content-excerpt"> <p>我是 iphone 开发的新手。我已经创建了地图应用程序,并显示了当前位置并将图钉放置到当前位置。现在我想在单击图钉时显示当前位置的标题和副标题。请帮帮我。</p> <p>谢谢。</p> </div> <div class="s-post-summary--meta"> <div class="s-post-summary--meta-tags tags js-tags t-cñ t-ûnet t-aspûnet-mvc t-aspûnet-mvc-4 t-actionfilterattribute"> <a href="/tags/iphone" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">iphone</a><a href="/tags/map" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">map</a><a href="/tags/title" class="post-tag flex--item mt0 js-tagname-cñ" title="" rel="tag">title</a> </div> <div class="s-user-card s-user-card__minimal"> <div class="s-user-card--info"> <div class="s-user-card--link d-flex gs4"> </div> </div> <time class="s-user-card--time" style="margin-left:5px;"> <span title="2022-04-18 08:34:11Z" class="relativetime"> 2010-03-01T11:26:19.540</span></time> </div> </div> </div> </div> </div> <br class="cbt"> <div class="s-pagination site1 themed pager float-left"> <a class="s-pagination--item js-pagination-item " href="/tags/title?p=1" rel="" title="Go to page 2">1</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=2" rel="" title="Go to page 2">2</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=3" rel="" title="Go to page 2">3</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=4" rel="" title="Go to page 2">4</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=5" rel="" title="Go to page 2">5</a><a class="s-pagination--item js-pagination-item is-selected" href="/tags/title?p=6" rel="" title="Go to page 2">6</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=7" rel="" title="Go to page 2">7</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=8" rel="" title="Go to page 2">8</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=9" rel="" title="Go to page 2">9</a><a class="s-pagination--item js-pagination-item " href="/tags/title?p=10" rel="" title="Go to page 2">10</a></div> </div> <div id="sidebar" class="show-votes" role="complementary" aria-label="sidebar"> <div class="module js-gps-related-tags" id="related-tags"> <h4 id="h-related-tags">Reference</h4> <div data-name="javascript"> <a href="https://php.github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">php</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">1429865</span> </span> </div> <div data-name="javascript"> <a href="https://c-cpp.com" class="post-tag no-tag-menu js-gps-track" target="_blank">c/c++</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">756500</span> </span> </div> <div data-name="javascript"> <a href="https://nginx.github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">nginx</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">49975</span> </span> </div> <div data-name="javascript"> <a href="https://mongodb.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">mongodb</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">159057</span> </span> </div> <div data-name="javascript"> <a href="https://mybatis.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">mybatis</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">3233</span> </span> </div> <div data-name="javascript"> <a href="https://anaconda.org.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">anaconda</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">13410</span> </span> </div> <div data-name="javascript"> <a href="https://pycharm.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">pycharm</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">14671</span> </span> </div> <div data-name="javascript"> <a href="https://python.github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">python</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">1902243</span> </span> </div> <div data-name="javascript"> <a href="https://vscode.github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">vscode</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">56040</span> </span> </div> <div data-name="javascript"> <a href="https://dockerdocs.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">docker</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">110988</span> </span> </div> <div data-name="javascript"> <a href="https://github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">github</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">49000</span> </span> </div> <div data-name="javascript"> <a href="https://flask.github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">flask</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">49129</span> </span> </div> <div data-name="javascript"> <a href="https://ffmpeg.github.net.cn" class="post-tag no-tag-menu js-gps-track" target="_blank">ffmpeg</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">24037</span> </span> </div> <div data-name="javascript"> <a href="https://jmeter.net" class="post-tag no-tag-menu js-gps-track" target="_blank">jmeter</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">16910</span> </span> </div> <div data-name="javascript"> <a href="https://matplotlib.net" class="post-tag no-tag-menu js-gps-track" target="_blank">matplotlib</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">63493</span> </span> </div> <div data-name="javascript"> <a href="https://getbootstrap.net" class="post-tag no-tag-menu js-gps-track" target="_blank">bootstrap</a> <span class="item-multiplier"><span class="item-multiplier-x">×</span> <span class="item-multiplier-count">54641</span> </span> </div> </div> </div> </div> </div> <footer id="footer" class="site-footer js-footer" role="contentinfo"> <div class="site-footer--container"> <div class="site-footer--logo"> <a href="https://stackoverflow.com"><svg aria-hidden="true" class="native svg-icon iconLogoGlyphMd" width="32" height="37" viewBox="0 0 32 37"><path d="M26 33v-9h4v13H0V24h4v9h22Z" fill="#BCBBBB"/><path d="m21.5 0-2.7 2 9.9 13.3 2.7-2L21.5 0ZM26 18.4 13.3 7.8l2.1-2.5 12.7 10.6-2.1 2.5ZM9.1 15.2l15 7 1.4-3-15-7-1.4 3Zm14 10.79.68-2.95-16.1-3.35L7 23l16.1 2.99ZM23 30H7v-3h16v3Z" fill="#F48024"/></svg></a> </div> <nav class="site-footer--nav"> <div class="site-footer--col"> <h5 class="-title"><a href="https://stackoverflow.org.cn" class="js-gps-track" data-gps-track="footer.click({ location: 3, link: 15})">Stack Overflow 中文网</a></h5> <p>遵从 CC BY-SA 知识共享许可协议。</p> </div> </nav> </div> </footer> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?709ff2ad9744e86b5b0eee677fc13ede"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-1MW5BV8G8E"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-1MW5BV8G8E'); </script> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6117966252207595" crossorigin="anonymous"></script> </body> </html>