Side navigation
#14121 closed bug (notabug)
Opened July 11, 2013 12:04PM UTC
Closed July 11, 2013 01:08PM UTC
Last modified July 11, 2013 01:09PM UTC
a bug about page transition
Reported by: | dengchunlin@google.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.10.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
there 3 html files,a.html,b.html,c.html
a.html:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript" src="js/jquery/jquery-1.4.1.js"></script>
<script type="text/javascript" src="js/jquery/jquery.mobile-1.3.1.js"></script>
</head>
<body>
<a href="b.html">bbbbbbb</a>
<input type="text"/>
</body>
</html>
b.html:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript" src="js/jquery/jquery-1.4.1.js"></script>
<script type="text/javascript" src="js/jquery/jquery.mobile-1.3.1.js"></script>
</head>
<body>
<a href="b.html">bbbbbbb</a>
<input type="text"/>
</body>
</html>
c.html:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript" src="js/jquery/jquery-1.4.1.js"></script>
<script type="text/javascript" src="js/jquery/jquery.mobile-1.3.1.js"></script>
</head>
<body>
<a href="b.html">bbbbbbb</a>
<input type="text"/>
</body>
</html>
first i use browser open a.html, then link to b.html,then to c.html,then i use browser's back button,back to b.html, then to a.html,there in no question,every page, the inputed data has been saved.
but when i use jquery(version >= 1.5),do the same operation, a.html->b.html->c.html,when back,c.html->b.html,the inputed data in b.html disappeared,(maybe b.html refreshed),b.html ->a.html,the inputed data in a.html saved.
What is bug? Or am I wrong?please help me.thanks
Please ask for help on stackoverflow, the jquery forums, or in the #jquery irc channel.