【发布时间】:2011-07-26 16:26:39
【问题描述】:
我有 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>
【问题讨论】: