English 中文(简体)
文档中。getEplementById(等等). 值没有达到预期值
原标题:document.getElementById( blah ).value not behaving as expected
  • 时间:2012-05-22 20:49:08
  •  标签:
  • javascript

Is there any situation where I would have to set the focus on a input text first (document.getElementById( the_input_text ).focus() ) before I could set the value (document.getElementById( the_input_text ).value= 123 ) in order for me to see the value (123) in the input text?

我之所以问,是因为我必须在我正在编写的这一页上这样做,以便让我看到输入文本的价值。

最佳回答

不,没有需要首先聚焦元素的案例... 除非有一些可怕的, 分别的 JavaScript 反复艰难地决定值 直到或除非焦点突出。

你可以尝试:

setTimeout(function(){
  document.getElementById( the_input_text ).value= 123 
},2000);

...看看是否有JS在设定你的价值观后 压倒了你的价值观

I tested 以确保 HTML5 占位符="... 属性不会引起问题。

问题回答

暂无回答




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

热门标签