IE 中没有 Jquery 厚框

发布于 2024-11-26 16:39:15 字数 815 浏览 5 评论 0原文

我有 jquery 厚盒子,点击某个链接即可加载。

然后,如果我单击厚框窗体上的单选按钮,它将关闭厚框窗体,并打开另一个厚框窗体。

但第二个厚框在 IE 中不存在。 它在 Mozilla 中工作

这是我的代码

<script type="text/javascript">


/* Display the search popup according to the radio button selection **/
function show_search (value)
{

    tb_remove();
    var url= 'url1'; 


    setTimeout("tb_show('Change Details','"+url+"');",1*500);
    return false;
}

 </script>

<form class="jNice" action="" method="post" onsubmit="javascript:return formCarSrch_validate(this);" id="hotel_search_popup">

                <h2>Search Hotels</h2>
                 <input name="category"  type="radio" value="F"  class="radioSearch"  onclick="return show_search(this.value);"/><label>Flight</label>

</form>

i have jquery thick box, and it is loading on clicking some link.

Then if i click an radio button on the thick box form, it will close the thick box form and another thick box form will open.

But the second thick box is not coming in IE.
Its working in Mozilla

This is my code

<script type="text/javascript">


/* Display the search popup according to the radio button selection **/
function show_search (value)
{

    tb_remove();
    var url= 'url1'; 


    setTimeout("tb_show('Change Details','"+url+"');",1*500);
    return false;
}

 </script>

<form class="jNice" action="" method="post" onsubmit="javascript:return formCarSrch_validate(this);" id="hotel_search_popup">

                <h2>Search Hotels</h2>
                 <input name="category"  type="radio" value="F"  class="radioSearch"  onclick="return show_search(this.value);"/><label>Flight</label>

</form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

圈圈圆圆圈圈 2024-12-03 16:39:15

检查以下链接中的文档:

[JQuery Thick box][1]

[1]: http:// /jquery.com/demo/thickbox/

并使用以下代码:

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="thickbox.js"></script>
<script type="text/javascript">
 function show_search (value)
  { 
   var url= 'http://www.google.com'; 
   tb_show('Change Details','"+url+"');   
   setTimeout("remove()",1*100);
   return false;
  }
  function remove()
  { 
    tb_remove();    
    alert("check");
   } 
 </script> 
</head> 
<body>
<form id="hotel_search_popup">
<h2>Search Hotels</h2>
<input name="category"  type="radio" value="F"  class="radioSearch"  onclick="return show_search(this.value);"/>
<label>Flight</label>
 </form>
 </body>
 </html>

Check the documentation in the following link:

[JQuery Thick box][1]

[1]: http://jquery.com/demo/thickbox/

And use the following code:

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="thickbox.js"></script>
<script type="text/javascript">
 function show_search (value)
  { 
   var url= 'http://www.google.com'; 
   tb_show('Change Details','"+url+"');   
   setTimeout("remove()",1*100);
   return false;
  }
  function remove()
  { 
    tb_remove();    
    alert("check");
   } 
 </script> 
</head> 
<body>
<form id="hotel_search_popup">
<h2>Search Hotels</h2>
<input name="category"  type="radio" value="F"  class="radioSearch"  onclick="return show_search(this.value);"/>
<label>Flight</label>
 </form>
 </body>
 </html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文