我有这个三重组合脚本,当选择第三个选项时,它会自动重定向您。我需要的是停止并通过按钮执行。如果有人能提供帮助,我将非常感激。我试图解决它,但我是一个新手。如果链接,不知道如何在这里发布代码。感谢
答案 0 :(得分:0)
查看提供的链接上的代码,第3个选项有一个“onchange”属性,它将调用“redirect2”函数。
虽然查看函数本身,但我不确定该函数是否能够进行重定向。但是,如果要禁用重定向,可以删除“onchange”属性。
如果你真的需要继续使用该函数(例如更新任何状态/值),那么你需要在“onchange”属性的末尾添加return false,例如:
onChange="redirect2(this.options.selectedIndex); return false;"
干杯:))
> (以上解决方案不起作用) > 编辑:
var nextPage = "";
function redirect2(z){
//parent.chartsloader.location=temp1[z].value
//parent.location=temp1[z].value
nextPage = temp1[z].value;
}
function goToNextPage()
{
if(document.isc.example.options.selectedIndex > 0 && document.isc.stage2.selectedIndex > 0 && document.isc.stage3.selectedIndex > 0)
window.location = nextPage;
}