1
我想在更改頁面之前替換網址中的間距,並創建我想要的網址。 替換不起作用。 我的功能就是這樣聚合物替換網址,間距
handleTap: function(item) {
var item = this.$.listTypes.itemForElement(item.target);
var e = item.type;
e.replace(" ", "-");
console.log(e);
window.location.hash = e; }
謝謝!