IE 中没有 Jquery 厚框
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查以下链接中的文档:
[JQuery Thick box][1]
[1]: http:// /jquery.com/demo/thickbox/
并使用以下代码:
Check the documentation in the following link:
[JQuery Thick box][1]
[1]: http://jquery.com/demo/thickbox/
And use the following code: