我想在另一个标签中打开http://10.41.30.88/mmisweb/plpodtl.asp?pl=30010111,用户必须输入最后八位数字。 (例如,在这种情况下为30010111)。
对于输入,我必须使用HTML页面和JavaScript。我使用了以下内容 -
<!DOCTYPE html>
<html>
<body>
<a href="http://10.41.30.88/mmisweb/plpodtl.asp?pl=" id="baseUrl">Link Text</a>
<input type="text" id="appendUrl" onclick="ass();return false; "/>
<script>
function ass() {
window.location = $(this).attr('href') + $('#appendUrl').val();
return false;
}
</script>
</body>
</html>
但它只在窗口中返回http://10.41.30.88/mmisweb/plpodtl.asp?pl=而不是数字。
答案 0 :(得分:1)
Onclick必须在链接....
<a href="http://10.41.30.88/mmisweb/plpodtl.asp?pl=" id="baseUrl" onclick="ass();">
你也返回了假,在onclick中没有必要。