English 中文(简体)
j Query UI Dialog and Textarea Focus Issue
原标题:jQuery UI Dialog and Textarea Focus Issue

Im利用 j和jQuery UI,从事模式评论系统的工作,但我有某些问题,有重点。 我在“路程”内有一系列折射线,以便在Login和Add评论之间交换:

<div id="modal" title="Loading">
 <div id="modalContent"></div>

 <div id="modalLogin">
  <div class="loginBox"></div>
  <div class="addCommentBox"></div>
  <div class="commentReview"></div>
 </div>
</div>

在补充部分 方框四,我引用评论法:

 <form action="/comments/add" class="addCommentForm" name="addCommentForm" method="post">
  <textarea name="content" class="addCommentContent"></textarea>
  <button value="Add Comment" type="submit" class="commentPost"/>
  <button value="Clear Comment" type="submit" id="clearComment"/>
 </form>

问题是,在开始方言之后,在<代码>addCommentBox内文本区域大约有一半时间。 div 没有对关键投入做出选择。 模拟工程是正确的,将允许选择案文,但关键板控制并不重要。

我没有讲过文字的听众。 我在纽特州有一些,但只是针对纽特州。

紫外线上出现的唯一情况似乎是,每当我点击模式时,总模式四的z-指数就会增加。 我制定了<代码>addCommentBox。 div to have a z-index of 9999, greater than the z-index of the chem.

对研究的任何建议或指示都将受到高度赞赏。 感谢!

问题回答

如果发生“浪费时间”这种困难。 在一些其他浏览器上测试,看是否发生同样的事情。

如何藏匿标识 方框和评论审查? 如果你重复使用不透明的话,你可以看到的是,你可以看到的东西在案文的顶端。

你拿不出的眼光看着零点,但是,在其它方面,他们仍然在那里。 他们将接受模拟活动,阻止你点击案文。

如果你能够看到文本,那么,它就象给我一个z-index问题一样。

在开方言时,试图在“开放”功能上集中文字箱。

$( #modal ).dialog({
    open: function () {
        $( textarea[name=content] ).focus();
    }
});

如同问题一样,在网页上还有一点。 您是否通过将上述特征放在与所有其他功能分开的网页上加以测试?

如果案文没有确定TABINDEX(TABINDEX)的财产,则对其加以界定。





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

热门标签