我在2个不同的div中有2个颜色选择器。
<div class="panel-heading" style="width:100%" id="h1">
<span style="float:right; padding-right:10px;" class="close"> <input type='text' class="basic" id="t1"/> </span>
</div>
<div class="panel-heading" style="width:100%" id="h2">
<span style="float:right; padding-right:10px;" class="close"> <input type='text' class="basic" id="t2"/> </span>
</div>
这是我的谱图选择器JS:
$(document).ready(function () {
$(".basic").spectrum({
color: "rgb(244, 204, 204)",
showPaletteOnly: true,
hideAfterPaletteSelect: true,
change: function (color)
{
setBackgroundColor(color);
},
palette: [
["rgba(168, 255, 102, 0.29)", "rgb(67, 67, 67)", "rgb(102, 102, 102)",
"rgb(204, 204, 204)", "rgb(217, 217, 217)", "rgb(255, 255, 255)"],
["rgb(152, 0, 0)", "rgb(255, 0, 0)", "rgb(255, 153, 0)", "rgb(255, 255, 0)", "rgb(0, 255, 0)",
"rgb(0, 255, 255)", "rgb(74, 134, 232)", "rgb(0, 0, 255)", "rgb(153, 0, 255)", "rgb(255, 0, 255)"]
]
});
});
现在在setBackgroundColor()函数里面我怎样才能知道我选择了哪个颜色选择器div。(我想改变div的背景颜色) 即H1或H2。
注意:我不想在jquery中将输入ID作为$("#t1").spectrum
发送。
请帮帮我。提前谢谢。
答案 0 :(得分:2)
您可以使用this
,但这会捕获输入元素,因为插件会被.basic
元素所吸引。要获得父级本身,只需使用.parent()
或.closest()
:
$(".basic").spectrum({
color: "rgb(244, 204, 204)",
showPaletteOnly: true,
hideAfterPaletteSelect: true,
change: function (color) {
// use this
console.log(this); // will show <input type='text' class="basic" id="t1"/>
// to access parent element use .closest
console.log( $(this).closest('.panel-heading') );
// or
console.log( $(this).closest('.close') );
setBackgroundColor(color);
},
});
答案 1 :(得分:1)
也许这对你有用。
$("#h1").focus(function() {
//code when div #h1 focused
});
$("#h2").focus(function() {
//code when div #h2 focused
});
或
this
具有焦点功能的Norlihazmey Ghazali表示
答案 2 :(得分:0)
感谢大家的帮助。
这是如何更改其父bgcolor:
change: function (color)
{
$(this).parent().parent().css('background',color);
},