-3

本质上,我们有两个表单字段,要求用户向我们提供两个字母数字字符串,并且需要从这两个字符串构造一个 URL。但是,需要保留 URL 的基本结构。

用户将在我们网站上的两个文本字段中输入请求的数字,然后单击提交按钮。此时需要将输入数据插入 URL 并在浏览器中打开。

示例:URL.com/FixedData + UserEntry1 + FixedData + UserEntry2 –– UserEntry1 & UserEntry2 将插入固定数据之间。

完成的 URL 将显示为:http://URL.com/FixedDataUserEntry1FixedDataUserEntry2

4

2 回答 2

1

你几乎回答了你的问题。

HTML

<input id='UserEntry1' type='text'>
<input id='UserEntry2' type='text'>

Javascript

var URLBase = "http://URL.com/fixeddata1";
var TrailingFixedData = "fixeddata2";

finalURL = URLBase + document.getElementById('UserEntry1').value + TrailingFixedData + document.getElementById('UserEntry2').value;

或者,如果您使用的是 jQuery:

finalURL = URLBase + $('#UserEntry1').val() + TrailingFixedData + $('#UserEntry2').val();
于 2013-09-11T17:10:02.177 回答
1

http://jsfiddle.net/4M3q3/

HTML:

<input id="one"><input id="two">
<button id="open">Open</button>

JS:

$('#open').click(function() {
    var fixedData1 = 'http://www.google.com/#q=',
        fixedData2 = '+',
        userEntry1 = $('#one').val(),
        userEntry2 = $('#two').val();

    var newWindow = window.open(fixedData1 + userEntry1 + fixedData2 + two, '_blank');
    newWindow.focus();
});
于 2013-09-11T17:10:27.783 回答