如下代碼,在FF就運行正常,但是到了IE和Chrome中就不管用了。
html代碼是:
<select>
<option>選擇分類/<option>
{foreach item=aList key=key from=$talkParentType}
<option>{$aList}/<option>
{/foreach}
<select>
<option>選擇欄目/<option>
//下拉框選擇訪談子類型
function changeTalkType(parent_id){
//請求子類型的數據
var url = 'cLiveColumnList.php?channel_id='+parent_id+'&operate_type=select'+"&rand="+Math.random();
$("#talk_child_type").load(url);
}
把js代碼修改成:
//下拉框選擇
$("select[id^='talk_parent_style']").bind("change",
function(){
var curr_var = $(this).val();
//請求子類型的數據
var url = 'cLiveColumnList.php?channel_id='+curr_var+'&operate_type=select'+"&rand="+Math.random();
$("#talk_child_type").load(url);
});
閱讀更多 老公城獅 的文章