标签: javascript html
如何使用干净的URL传递一些参数:
由此:
http://example.com/something/index.html?Use_Id=abc
对此:
http://example.com/something/abc
答案 0 :(得分:1)
window.location.href = "http://example.com/something/abc?use_id="+your_value_variable
如果您需要多个,只需将其添加到字符串中。