我有一个帮助你了解我的目标的方法
我要做的是通过数据标题将php变量从我的页面传递到fancybox表单。
$(document).ready(function() {
$(".modalbox").fancybox({
'closeBtn' : false
});
$(".action-xam").click(function(){
//Get some info like the title
var title = $(this).next("div").data("title");
//Insert the info into xam
$("#krimmeno").val(title);
});
});
答案 0 :(得分:0)
不确定您想要什么,但如果您将.next
替换为.find("div:first-child")
,则会选择div
中的第一个link
,或者您可以定位该类{{1} }}
.find(".service-box")
适用于兄弟元素。
.next