可能性の重複:
Finding whether the element exists in whole html pagejQueryのisset?
私は代を作りたいと思います:
HTML:
<span id="one">one</span>
<span id="two">two</span>
<span id="three">three</span>
JavaScripトン:
LIVEif (isset($("#one"))){
alert('yes');
}
if (isset($("#two"))){
alert('yes');
}
if (isset($("#three"))){
alert('yes');
}
if (!isset($("#four"))){
alert('no');
}
:
どのように私はそれを行うことができますか?
どうすべきこれらのスパンに設定されていますか? –
'isset'とは何を意味していますか? 'span'にはいくつかのコンテンツがありますか?それが存在します? –