button.enter-match
我有以下代码在包含多个元素的长表的末尾运行:
$("button.enter-match")
.button()
.on('click', function() {
$("form.enter-match").dialog({
modal: true,
height: 'auto',
width: 200,
close: function() {
$("form.enter-match input[name='code']").val('');
},
open: function() {
$("form.enter-match input[name='code']").val('').focus();
},
buttons: {
Set: function() {
pid = $(this).parents("[data-pid]").data('pid');
if ($("form.enter-match input[name='code']").val() == '') {
alert('Code empty!');
return false;
}
$.post(
request_url,
{
'action': 'set_match',
'pid': pid,
'code': $("form.enter-match input[name='code']").val()
},
function (data) {
error_handler(data);
if (data['error'] == null) {
$("tr#pid-" + pid + " td.code:first div").html('<i>' + $("form.enter-match input[name='code']").val() + '</i>');
$("form.enter-match").dialog('close');
}
},
'json'
);
}
}
});
});
该行pid = $(this).parents("[data-pid]").data('pid');
没有获取pid
数据值,因为form#enter_match
它是在文档的最顶部创建的,以便根据需要在代码中重用。因此,它不会有具有该[data-pid]
属性的父级,但是button.enter-match
会有。如何从代码部分中[data-pid]
获取此特定值的值?button.enter-match
$("form.enter-match").dialog()