0

私の問題は、ここのelseセクションが機能していないように見えることです。私はすでに解決策を求めて Web をサーフィンしましたが、私のものとまったく同じ質問が非常にたくさんありますが、答えは常に異なるようです.

これは私がクリックするボタンです

<input type="submit" value="4">

次のようなボタンもあります。

<input type="submit" id="b1" value="Back">

私の目的は、ID の付いたボタンがクリックされたかどうかを調べることです。


var specify = "";
var prevpos = 0;

$('input[type=submit]').click(function(){
    specify = $(this).attr('value');

    if($(this).attr('id').substring(0,1) == "b")
    {
       $("html, body").animate({scrollTop: prevpos}, 777);
       $(".right").animate({opacity: 0.0}, 200);
       $(".left").animate({opacity: 1.0}, 200);
       // more stuff here                           
    }   
    else
    {
       $("html, body").animate({scrollTop: prevpos}, 777);  
       // more stuff here
    }
});

いつものように、どんな助けも大歓迎です!

4

3 に答える 3

4

コードの問題は、なしでボタンをクリックするとnullをid呼び出すため、エラーが発生するためです。substr()

代わりにこれを試してください:

var specify = "";

$('button').click(function () {
    specify = $(this).attr('value');
    var id = $(this).attr('id');

    // check there is an id, and if so see if it begins with 'b'
    if (id && id.substring(0, 1) == "b") {
        alert("You clicked the button WITH an id");
    } 
    else {
        alert("You clicked the button WITHOUT an id");
    }
});

フィドルの例

于 2013-01-25T14:36:03.613 に答える
2
var specify = "";
var prevpos = 0;

$('input[type=submit]').click(function(){
    specify = $(this).attr('value');

    if($(this).attr('id') && $(this).attr('id').substring(0,1) == "b")
    {
       $("html, body").animate({scrollTop: prevpos}, 777);
       $(".right").animate({opacity: 0.0}, 200);
       $(".left").animate({opacity: 1.0}, 200);
       // more stuff here                           
    }   
    else
    {
       $("html, body").animate({scrollTop: prevpos}, 777);  
       // more stuff here
    }
});

要素の値を確認する前に、要素に id 属性があるかどうかを確認する必要があるでしょう。

于 2013-01-25T14:35:59.690 に答える
0

少し前に同様の要件がありましたが、これが私の解決策です。

var specify = "";
var prevpos = 0;

$('input[type=submit]').click(function(e){ //Note the addition of 'e'
    var id = e.target.id; // If the element has no ID you should get an empty string here

    specify = $(this).attr('value');

    if( id.match(/^b/) ) { // This is a regular expression, if the ID starts with 'b' then it matches
       $("html, body").animate({scrollTop: prevpos}, 777);
       $(".right").animate({opacity: 0.0}, 200);
       $(".left").animate({opacity: 1.0}, 200);
       // more stuff here                           

    } else {
       $("html, body").animate({scrollTop: prevpos}, 777);  
       // more stuff here
    }
});
于 2013-01-25T14:53:23.270 に答える