-1

我将如何将 a 的内容插入<div>浏览器地址栏中?假设我有:

<div id="content">bathroom</div> 

我该怎么做呢?该网站是一个带有主题标签和 JSON 的单页构建,试图#categorypage通过将内容区域中的页面标题插入到地址栏中来使 URL 与 Google Analytics 很好地配合,以便 Google 看到.com#categorypage-bathroom

谢谢。

编辑:

controller.js文件使用

$("#productPage_HeaderTitle").html(this.product.ProductName);

以及用于指向产品页面的类别 js 文件

$.mobile.changePage($("#productPage"), { transition: "fade" });

我需要以某种方式将 this.product.ProductName 添加到#productPage

4

2 回答 2

0

尝试:

alert(document.URL+$('#content').html);
于 2013-11-07T08:54:41.727 回答
0
$('div.trigger').click(function() // Use class instead of ID
{
var data=$(this).text();
var url=window.location.href;
var to_url=url+"#"+data;
window.location.href=to_url;
});
于 2013-11-07T08:57:11.730 回答