1

我有这种 URL:

something.com/#page/id(用backscore.js 结构化)

我想检查该id 是否存在并使用underscore.js 在DOM 中使用它,我知道我可以使用window.location .href.split,但我只想知道是否有更合适和更清洁的方式..

4

1 回答 1

1
"page/:id": "someFunction" #this will be your route and it should have a function.

# In that someFunction you can check parameter (id) as shown below.

someFunction: function (id) {
    console.log(id);
}
于 2013-05-07T09:54:33.500 回答