我有一个jQuery Mobile应用程序,就像jQuery Mobile文档http://jquerymobile.com/test/docs/pages/dynamic-samples/sample-reuse-page.html中的动态页面示例一样。
一切正常,但正如在示例中我无法使页面标题相应地更改为所请求的页面。在示例的基础上:单击“类别”部分中的“颜色”类别时,新页面的标题为“颜色”,但是当您返回然后选择“车辆”时,页面标题仍为“颜色”。我该如何解决这个问题?
我在$page.attr('data-title', category.name)
函数中尝试showCategory
但它不起作用。有什么想法吗?
答案 0 :(得分:1)
你也可以使用这样的东西 -
$("title").html(category.name);
答案 1 :(得分:0)
我没有看到您在示例中描述的行为。但是,改变标题不会这样做吗?
document.title = category.name;