English 中文(简体)
在Change, 替换后
原标题:Maintain jQuery onChange After a Replacewith

我有某些法典,它 gr首选页,遮盖头版,以便我可以在必要时稍后重新启用。

mySelect = jQuery( select ).get(0);
origSelect = jQuery(mySelect).clone();

jQuery(mySelect).change(function(){
   //some code
}

当我向该法典开火,以:

jQuery(mySelect).replaceWith(origSelect);

在职者停止工作。 我确定,它之所以如此,是因为它现在被称作变幻灯,是用该名称来回答。 我在这里是否有任何选择,以图形内容取代我方言的内容,同时又不改变所提到的名称?

最佳回答
问题回答

使用$(mySelect).live ( change , ...),而不是$(mySelect).change(...)





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签