我有这个jquery:
var btn_ongkir_result = $('#ongkir-result').attr('href');
//-- this produce : http://example.com?dest=2313
var current_dest = btn_ongkir_result.param('dest');
//-- I'm expecting 2313 here. but it gives me error on console
//-- btn_ongkir_result.param is not a function
如何从dest
变量中获取btn_ongkir_result
参数?谢谢