Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 location.href = "html page" 将一个 html 页面移动到另一个页面。我想在移动页面时传递一些数据。在里面怎么做?我是这个的新手。请帮我。
编辑
为什么这被标记为 jquery-mobile 呢?
如果要将数据传递给服务器端脚本,请照常进行:
href="somesite.html?foo=bar&duck=swims" href="somesite.php?foo=bar&duck=swims" href="somesite.aspx?foo=bar&duck=swims"
如果使用 jquery mobile,则根本不应该以这种方式更改页面。创建链接或使用 changePage() 方法。