html,如何将列表框中的值传递到button的action中
html是通过.txt文件直接改成.htm而成的。我想在列表框选项值中输入网址,当我点击按钮时页面将跳转到相应的被选中的列表值地址页面。...
html 是通过.txt文件直接改成 .htm而成的。我想在列表框选项值中输入网址,当我点击按钮时页面将跳转到相应的被选中的列表值地址页面。
展开
2个回答
展开全部
<html>
<head>
<title>测试location内置对象</title>
<script>
function aMethod(){
//location内置对象是window内置对象的子对象,主要作用进行网页的跳转
//对象取得
//var loc = window.location;
//向baidu跳转
//loc.href="http://www.baidu.com";
//取得输入系元素
var userNameElement = document.getElementById("tid");
//取值:输入框的值由value属性决定
var unValue = userNameElement.value;
//简化
location=unValue;
}
</script>
</head>
<body>
<input type ="text" value="http://" id="tid">
<input type="button" value="测试location内置对象" onclick="aMethod()">
</body>
</html>
<head>
<title>测试location内置对象</title>
<script>
function aMethod(){
//location内置对象是window内置对象的子对象,主要作用进行网页的跳转
//对象取得
//var loc = window.location;
//向baidu跳转
//loc.href="http://www.baidu.com";
//取得输入系元素
var userNameElement = document.getElementById("tid");
//取值:输入框的值由value属性决定
var unValue = userNameElement.value;
//简化
location=unValue;
}
</script>
</head>
<body>
<input type ="text" value="http://" id="tid">
<input type="button" value="测试location内置对象" onclick="aMethod()">
</body>
</html>
展开全部
<html>
<head>
<title>测试location内置对象</title>
<script>
function aMethod(){
//location内置对象是window内置对象的子对象,主要作用进行网页的跳转
//对象取得
//var loc = window.location;
//向baidu跳转
//loc.href="http://www.baidu.com";
//取得输入系元素
var userNameElement = document.getElementById("tid");
//取值:输入框的值由value属性决定
var unValue = userNameElement.value;
//简化
location=unValue;
}
</script>
</head>
<body>
<input type ="text" value="http://" id="tid">
<input type="button" value="测试location内置对象" onclick="aMethod()">
</body>
</html>
<head>
<title>测试location内置对象</title>
<script>
function aMethod(){
//location内置对象是window内置对象的子对象,主要作用进行网页的跳转
//对象取得
//var loc = window.location;
//向baidu跳转
//loc.href="http://www.baidu.com";
//取得输入系元素
var userNameElement = document.getElementById("tid");
//取值:输入框的值由value属性决定
var unValue = userNameElement.value;
//简化
location=unValue;
}
</script>
</head>
<body>
<input type ="text" value="http://" id="tid">
<input type="button" value="测试location内置对象" onclick="aMethod()">
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询