search
A string beginning with a question  that specifies any query information in the URL.
属性源 Location  
实现版本 Navigator 2.0  安全性
Navigator 3.0:该属性默认是带有污点的。有关数据污点的更多信息,请看“JavaScript 的安全性”。描述
The search property specifies a portion of the URL. This property applies to HTTP URLs only.
The search property contains variable and value pairs; each pair is separated by an ampersand. For example, two pairs in a search string could look as follows:?x=7&y=5 You can set the search property at any time, although it is safer to set the href property to change a location. If the search that you specify cannot be found in the current location, you get an error.See Section 3.3 of RFC 1738 (http://www.cis.ohio-state.edu/htbin/rfc/rfc1738.html) for complete information about the search.
示例
In the following example, the window.open statement creates a window called newWindow and loads the specified URL into it. The document.write statements display properties of newWindow.location in a window called msgWindow.
newWindow=window.open
   ("http://guide-p.infoseek.com/WW/NS/Titles?qt=RFC+1738+&col=WW") msgWindow.document.write("newWindow.location.href = " +
   newWindow.location.href + "<P>")
msgWindow.document.close()
msgWindow.document.write("newWindow.location.search = " +
   newWindow.location.search + "<P>")
msgWindow.document.close() The previous example displays the following output:newWindow.location.href =
   http://guide-p.infoseek.com/WW/NS/Titles?qt=RFC+1738+&col=WW
newWindow.location.search = ?qt=RFC+1738+&col=WW 

解决方案 »

  1.   

    在你的例子中
    location.search.replace(/\?/ig,"").split("=")[1]就是room的值
      

  2.   

    我不是JS程序员,对这个不太熟,也不需要熟。  我只是想知道, 怎么取得那样的room值, 直接给具体的例子行不行?
      

  3.   

    搂住阿~~我也不是JS程序~~~正好看到一个例子而已路过~~To: xinyunyishui(心云意水) ( ) 信誉:168 如果有两个参数怎么办?
    如何接收?