使用 jQuery 更改属性?

发布于 2024-12-13 21:16:24 字数 100 浏览 0 评论 0原文

我有一个表格,每一行都有一个复选框,表格底部有一个输入框,我们可以在其中输入颜色名称(例如:fff)。当我们单击“提交”时,将选中复选框的所有“tr”的颜色更改为我们在输入框中输入的颜色

I have a table that in each row there is a checkbox and at the bottom of the table there is a input box that we can enter color name in it (example : fff). and when we click on submit change color of all 'tr' that checked check boxes to the color that we entered in inputbox

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

灯角 2024-12-20 21:16:24

如果我们可以看到您的 html,那就更容易了。

$('form').submit(function() {
    var sColor = '#' + $('input[type="text"]').val();
    $('input:checked').closest('tr').css('background-color', sColor);
    return false;
});

It would be easier if we could see your html.

$('form').submit(function() {
    var sColor = '#' + $('input[type="text"]').val();
    $('input:checked').closest('tr').css('background-color', sColor);
    return false;
});
夏雨凉 2024-12-20 21:16:24

你的意思是这样吗?

http://jsfiddle.net/GZaqD/

$("#btn").click(function(){
    $("input:checked").parents("tr").css({background:"#" + $("#color").val()});
});

You mean like this?

http://jsfiddle.net/GZaqD/

$("#btn").click(function(){
    $("input:checked").parents("tr").css({background:"#" + $("#color").val()});
});
貪欢 2024-12-20 21:16:24

我创建了一个我认为您想做的简单示例。希望它能帮助您入门。在 jsfiddel 上查看,http://jsfiddle.net/YGWKA/

I created a simple example of what I think you want to do. Hopefully it should get you started. Check it out on jsfiddel, http://jsfiddle.net/YGWKA/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文