如何使用url通过javascript发送数据?

时间:2014-04-21 04:16:13

标签: dropdownbox

这是我的脚本部分的代码。任何人都可以指导我

update_selected: function() {
    var url = base_url + "event/update_selected_event/" + this.id /+ this.event_id;
    window.location.href = url;

}

1 个答案:

答案 0 :(得分:1)

这取决于您的脚本尝试执行的操作。由于您使用此行导致重定向

window.location.href = url;

我猜您想将信息传递到您要导航到的页面。为此,您可以使用URL参数

var url = base_url 
    + "event/update_selected_event" 
    + "?id=" + this.id
    + "&event_id=this.event_id";