我有这个代码..
jQuery('#button_search').click(function(event){
event.preventDefault();
var propertyUrl = getBaseURL()+'public/Property/view-property';
var locationUrl = getBaseURL()+'public/Property/view-location';
if($('#propl').is(':checked'))
{
var selectedLoc = jQuery('#select_location').val();
if(selectedLoc == 'default'){
alert('Please Select Location');
}else{
$().redirect(locationUrl, {'arg1': 'value1', 'arg2': 'value2'});
}
}
else if($('#propn').is(':checked'))
{
var selectedProp = jQuery('#select_properties').val();
if(selectedProp == 'default'){
alert('Please Select Property');
}else{
$().redirect(propertyUrl, {'propertyId': selectedProp});
}
}
else{
alert('Select property or location');
}
});
我使用自定义按钮作为事件的持有者..当我在选择某个项目后单击该按钮时,它应该重定向到另一个页面..它在 Firefox、chrome 和 opera 中运行良好,但在 IE 中不起作用. 可能是什么问题呢?