有一个商店列表,当用户从下拉菜单中选择商店时,他们应该转到特定的网址。
这是javascript和HTML代码,但这不起作用!有什么问题?
<script>
function pageReady() {
document.getElementById('store-id').onchange = function() {
var URL = "44805?id=57"
document.location = URL;
};
document.getElementById('store-id').onchange();
}
</script>
<script src="/mcs/s/asset/34065/utils.js"></script>
<link rel="stylesheet" href="/mcs/s/file/54985/dialogs.css" media="screen" />
<script type="text/javascript"
src="http://maps.google.com/maps/api/js?sensor=true"></script>
答案 0 :(得分:0)
在div上使用jQuery加载:
$('#myDiv').load('http://www.someurl.com');
但也许你想导航到一个网址。如果您使用按钮,则可以执行以下操作:
$('#myButton').click(function(){
var url = $('#store-id').val();
document.location = url;
});
答案 1 :(得分:-1)
想象一下这个选择控件(下拉列表):
<select id="store" name="store">
<option value="null"> --- </option>
<option value="1"> Store #1 </option>
<option value="2"> Store #2 </option>
<option value="3"> Store #3 </option>
</select>
现在,您只需要在jQuery中使用以下代码将用户导航到新页面。
$(document).ready(function(){
$('#store').change(function(e) {
var target = $('#store').val();
if (target != 'null') window.location = 'something.php?id='+target;
});
});
当用户更改您的下拉列表时,他/她将从您的控件中选择导航到新页面。