我正在尝试获取 jQuery 变量并将它们插入到 href 属性中。
这是 jQuery
$(".id_container").click(function() {
var item_id = $(this).find(".item").val();
var std_id = $(this).find(".std").val();
var cre_id = $(this).find(".cre").val();
$(location).attr('href',"link.php?item=''+item+''&stid=''+std+''&cre=''+cre+''");
});