English 中文(简体)
"窗口 位置"和"窗口 位置"有什么区别?
原标题:What is the difference between "window.location.href" and "window.location.hash"?

我学会了“坚固”的窗口. place. hash.

代码在此 :

window.location.href = ($(e.currentTarget).attr("href"));
window.location.hash = ($(e.currentTarget).attr("href"));

他们之间有什么区别?

最佳回答

http://[www.example.com]:80/search?q=devmo#test

  • hash - 返回 URL 符号后面的 URL 部分, 包括 符号, 包括 符号。 您可以监听 < a href=" https:// developers.mozilla.org/ en- US/docs/Web/ API/ Window/ hashchange_event" rel = "no follown noreferr" <\\\\ code> hashchange event , 了解支持浏览器对 hash 的更改。

    Returns: #test
    
  • href - 返回整个 URL。

    Returns: http://[www.example.com]:80/search?q=devmo#test
    

Read More

问题回答

例如,测试 http://stackoverflow.com/#Page

href = http://stackoverflow.com/#Page
hash = #Page

hash 属性返回 URL 的锁定部分, 包括 hash 符号 (#) 。

这里是 window. place.href window. place.hash 之间的区别的简单示例。

网址http://www.manm.com/member/#!create :

  • href: http://www.manam.com/member/#!create
  • hash: #!create




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.