1

我有这个代码,但它不会工作。可能是什么问题?我的语法错了还是整个方法错了?

<input checked="checked" class="form-field" id="IsCurrentlySmokingrightNej" name="IsCurrentlySmokingright" type="radio" value="Nej">
<input class="form-field" id="IsCurrentlySmokingrightJa" name="IsCurrentlySmokingright" type="radio" value="Ja">
    <input id="IsCurrentlySmokingrighttextbox" name="IsCurrentlySmokingright" type="text" style="background-color: rgb(0, 255, 0); float: right; width: 50px;">

javascript:

 $(document).on("change", "IsCurrentlySmokingrightNej", function() {
    var elem = document.getElementById("IsCurrentlySmokingrightNej");
    var ele = $("#IsCurrentlySmokingrighttextbox");
    if (elem.checked) {
        ele.css("background-color", "rgba(0, 255, 0, 1)");
        ele.css("float", "right");
        ele.css("width", "50px");

    }
});

   $(document).on("change", "IsCurrentlySmokingrightJa", function() {
        var elem = document.getElementById("IsCurrentlySmokingrightJa");
        var ele = $("#IsCurrentlySmokingrighttextbox");
        if(elem.checked){
            ele.css("background-color", "rgba(255, 0, 0, 1");//röd
            ele.css("float", "right");
            ele.css("width", "50px");
        }

});
4

2 回答 2

3

你错过#了 id 选择器

 $(document).on("change", "#IsCurrentlySmokingrightNej", function() {
                      //---^---here

其余的也一样。。

于 2013-07-31T12:40:09.497 回答
1

您需要提供 # 或 . 如果是 id 则 # 如果是类名则 .

$(document).on("change", "#IsCurrentlySmokingrightNej", function() {
                          ^^^ # here as it is id

还有一件事情:

var elem = document.getElementById("IsCurrentlySmokingrightNej");

为什么你使用这条线,即使你没有在任何地方使用它。

于 2013-07-31T12:41:46.957 回答