此处还有我的regular.html代码: regular.html
<html>
<head>
<title>Drop down</title>
</head>
<body>
<h1>Regular</h1>
<select>
<option href="regular.html">Regular</option>
<option href="contractual.html">Contractual</option>
</select>
</body>
</html>
这是合同: contractual.html
<html>
<head>
<title>Drop down</title>
</head>
<body>
<h1>Contractual</h1>
<select>
<option href="regular.html">Regular</option>
<option href="contractual.html">Contractual</option>
</select>
</body>
</html>
答案 0 :(得分:0)
你可以试试这个:
$('select').change(function(){
var url = $('option:selected', this).attr('href');
window.location.href = url;
});
答案 1 :(得分:0)
<h1>Main Page</h1>
<select onchange="location = this.options[this.selectedIndex].value;">
<option value="regular.html">Regular</option>
<option value="contractual.html">Contractual</option>
</select>