使用jQuery来获取网址并提取网址段
在包含类别列表的网页上,每个类别标题以此格式链接: http://localhost/admin/category/unpublish/2
我写了下面的js代码,试图捕获url和段的'unpublish'(action)和'2'(id),并且需要将请求发送到http://localhost/admin/category
$('#statusChanges a').click(function(evt) { // use the click event of hyperlinks
evt.preventDefault();
var url = $(location).attr('href');
// var action = url.segment(3); /*JS console complains that url.segment() method undefined! */
// var id = url.segment(4);
$.ajax({
type: "GET",
url: $(location).attr('href'),
dat: '',
/* do I need to fill the data with json data: {"action": "unpublish, "id": 2 } ? but I don't know how to get the segments */
success: function(data) {
$('.statusSuccess').text('success!');
},
error: function(data) {
$('.statusSuccess').text('error!');
}
});
}); // end of status change
尝试这个
var url = $(location).attr('href').split("/").splice(0, 5).join("/");
更新答案:
使用this
对象获取当前锚点链接,请参见下文
$(this).attr('href')
首先将URL拆分为段:
var segments = url.split( '/' );
var action = segments[3];
var id = segments[4];
我认为你可以使用拆分。 然后你可以有一个数组来处理从中你可以得到的动作和ID。
链接地址: http://www.djcxy.com/p/70245.html