gpt4 book ai didi

javascript - 提取链接 ID 以在 jquery 函数中使用

转载 作者:行者123 更新时间:2023-11-28 09:24:18 24 4
gpt4 key购买 nike

全部。

我知道这相对简单,但我对 javascript 的经验不足。背景是我试图在同一页面上使用 SimpleModal 和单独的模式。这类事情之前已经解释过( http://code.google.com/p/simplemodal/issues/detail?id=32 ),但我对 this.id 的理解不够好,并且代码无法正常工作。

我认为我的术语在这里甚至都不正确,但是选择器没有正确检索我的链接想法并用“#osx_”字符串解析它。在使用警报后我意识到了这一点(实际上是几个小时后)。

$('a.osx').click(function () {
$('#osx_' + this.id).modal();
});

我知道我的 HTML 设置正确,如果我将“#osx_newsletter”硬编码到这两个位置,它就可以正常工作。这显然会杀死我需要的动态 ID。

这是代码。有人可以让我知道我在这里做错了什么吗?我非常很感激!谢谢!

/*
* SimpleModal OSX Style Modal Dialog
* http://simplemodal.com
*
* Copyright (c) 2013 Eric Martin - http://ericmmartin.com
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*/

jQuery(function ($) {
var OSX = {
container: null,
init: function () {
$("a.osx").click(function (e) {
e.preventDefault();
alert('#osx_'+$(this).attr('id'));
$('#osx_' + 'donate').modal({
overlayId: 'osx-overlay',
containerId: 'osx-container',
closeHTML: null,
minHeight: 80,
opacity: 65,
position: ['0',],
overlayClose: true,
onOpen: OSX.open,
onClose: OSX.close
});
});
},
open: function (d) {
var self = this;
self.container = d.container[0];
d.overlay.fadeIn('slow', function () {
$('#osx_' + 'donate', self.container).show();
var title = $("#osx-modal-title", self.container);
title.show();
d.container.slideDown('slow', function () {
setTimeout(function () {
var h = $("#osx-modal-data", self.container).height()
+ title.height()
+ 20; // padding
d.container.animate(
{height: h},
200,
function () {
$("div.close", self.container).show();
$("#osx-modal-data", self.container).show();
}
);
}, 300);
});
})
},
close: function (d) {
var self = this; // this = SimpleModal object
d.container.animate(
{top:"-" + (d.container.height() + 20)},
500,
function () {
self.close(); // or $.modal.close();
}
);
}
};

OSX.init();

});

最佳答案

你可以尝试这样:

$('a.osx').click(function () {
$('[id="osx_' + this.id+'"]').modal();
});

关于javascript - 提取链接 ID 以在 jquery 函数中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14601673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com