1.# # represents a location in a web page. The character to the right is the identifier of that position. For example, http://www.example.com/index.html#print represents the print location of the web page index.html. After the browser reads this URL, it will automatically scroll the print position to the visible area. There are two ways to specify an identifier for a web page location. One is to use anchor points, such as <a name="print"></a>, and the other is to use id attributes, such as <div id="print">. 2. HTTP request does not include# # is used to guide browser actions and is completely useless on the server side. Therefore, the HTTP request does not include #. For example, when accessing the following URL, http://www.example.com/index.html#print, the request actually sent by the browser is as follows: XML/HTML CodeCopy content to clipboard
3. Characters after # Any characters that appear after the first # are interpreted by the browser as a location identifier. This means that none of these characters will be sent to the server. For example, the following URL is intended to specify a color value: http://www.example.com/?color=#fff, but the request actually sent by the browser is: XML/HTML CodeCopy content to clipboard
4. Change #Do not trigger web page reload By simply changing the part after #, the browser will only scroll to the corresponding position without reloading the web page. For example, if you change from http://www.example.com/index.html#location1 to http://www.example.com/index.html#location2, the browser will not request index.html from the server again. 5. Changing # will change the browser's access history Every time you change the part after #, a record will be added to the browser's access history. You can use the "Back" button to return to the previous location. This is particularly useful for Ajax applications, where you can use different # values to represent different access states, and then provide users with a link to access a certain state. It is worth noting that the above rules do not apply to IE 6 and IE 7, which will not add history records due to changes in #. 6. window.location.hash reads #value The window.location.hash property is readable and writable. When reading, it can be used to determine whether the status of the web page has changed; when writing, it will create an access history record without reloading the web page. 7. onhashchange event This is a new event in HTML 5. When the # value changes, this event will be triggered. This event is supported by IE8+, Firefox 3.6+, Chrome 5+, and Safari 4.0+. There are three ways to use it: •window.onhashchange = func; For browsers that do not support onhashchange, you can use setInterval to monitor changes in location.hash. 8. Google's mechanism for crawling # By default, Google's web spiders ignore the # portion of a URL. However, Google also stipulates that if you want the content generated by Ajax to be read by the browsing engine, you can use "#!" in the URL, and Google will automatically convert the content after it into the value of the query string _escaped_fragment_. For example, Google found the URL of the new version of Twitter: http://twitter.com/#!/username It will automatically fetch another URL: http://twitter.com/?_escaped_fragment_=/username Through this mechanism, Google can index dynamic Ajax content. Note AJAX = Asynchronous JavaScript and XML (a subset of Standard Generalized Markup Language). AJAX is a technology for creating fast, dynamic web pages. 2. ? 1) Connecting function: for example XML/HTML CodeCopy content to clipboard
2) Clear the cache: For example XML/HTML CodeCopy content to clipboard
The pages opened by the two URLs are the same, but there is a question mark at the end, which means that the cached content is not called, but it is considered to be a new address and is read again. 3. & Separators for different parameters JavaScript CodeCopy content to clipboard
What is the difference between JavaBean and POJO: In a word, pojo with set and get methods are javabeans. But JavaBean has more than just setting and getting, and any Java class can be a JavaBean. What is POJO According to Martin Fowler's explanation, it is "Plain Old Java Object", which is literally translated as "pure old-fashioned Java object", but everyone calls it "simple Java object". The intrinsic meaning of POJO refers to Java objects that do not inherit from any class, do not implement any interface, and are not invaded by other frameworks. Comparison between POJO and JavaBean The pojo format is used for temporary data transmission. It can only load data as a carrier for data storage, but does not have the ability to process business logic. Although the data acquisition of javabean is the same as that of pojo, there are other methods in javabean. JavaBean is a reusable component written in JAVA language. Its method naming, construction, and behavior must conform to specific conventions: 1. This class must have a public default constructor. Original URL: http://www.cnblogs.com/androidshouce/archive/2016/06/17/5592867.html |
<<: Detailed explanation of scp and sftp commands under Linux
This article shares the implementation code of jQ...
1. getBoundingClientRect() Analysis The getBoundi...
This article shares the MySQL 5.7 installation an...
Table of contents Kill instruction execution prin...
Table of contents Overview Blob Blob in Action Bl...
We are in an era of rapid development of mobile In...
Preface "High Performance MySQL" mentio...
Table of contents Preface text parameter example ...
Table of contents 1. Purpose 2. Grammar 3. Practi...
If you cannot download it by clicking downloadlao...
This article describes how to enable https servic...
Table of contents What is Docker Compose Requirem...
Microsoft IIS IIS (Internet Information Server) i...
When joining a Windows 2008 server subdomain to a...
Table of contents 1. What is lazy loading of rout...