English 中文(简体)
blur()不以编程方式工作|但从用户启动时可以
原标题:blur() does not work programmatically | but does when initiated from the user
  • 时间:2012-05-23 15:22:31
  •  标签:
  • javascript

这用于在用户通过ajax在单个输入表单上提交输入后清除输入。

var tweet_input = document.getElementById(  tweet_input  );
tweet_input.value=  ;
tweet_input.blur();

然而,在3个输入字段的表单上,这不会:

var input_url = document.getElementById(  bookmark_input_url  );
    input_url.value=  ;
var input_title = document.getElementById(  bookmark_input_title  );
    input_title.value=  ;
var input_tag = document.getElementById(  bookmark_input_tag  );
    input_tag.value=  ;

input_title.blur();
input_url.blur();
input_tag.blur(); 

实际上只有最后一个元素是模糊的。不确定其他两个发生了什么,也不知道如何排除故障。

基本上,我有一个在blur()上触发的事件监听器,它们在实际的用户blur(()上工作良好,但当我试图以编程方式启动它们时,只有一个有效。

最佳回答

首先需要有重点。

input_title.focus();
input_title.blur();
...
问题回答

这在我的情况下效果很好:

const fireEvent = (element, eventType="blur") => element && element.dispatchEvent(new Event(eventType));

现在,我们可以从任何地方调用此函数,以触发附加到任何元素的任何事件。

fireEvent(input_title)

参考





相关问题
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.

热门标签