开发者

How to hide an element defined by a variable

I have 开发者_开发技巧a variable itemid (which is the id of an element) which I want to hide, but firefox tells me this code is illegal:

  $(#(itemid)).hide();

Is what I am trying not possible or am I just tring it the wrong way? Also, in terms of debugging, is it possible to use javascript variable in alert boxes?

Thanks


try this:

$('#' + itemid).hide();


Try This

  $('#'+itemid).hide();


Your code should be:

$("#"+itemid).hide();


Your selector syntax is incorrect. Try:

$("#" + itemid).hide();

EDIT

Fixed stupid mistake.

And to answer the second part of your question, yes it is.

var someVar = "hello world";
alert(someVar); // displays an alert box with the variable


this will do it :

var itemid = '';

$('#'+ itemid ).hide();
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜