にnullを返します。単純なユーザー入力であれば、番号は割り当てられたテキスト(この場合はurl)と結合する必要があります。しかし、これは:http://someurl.com/?value=nullを返します。 - =後のすべてはユーザー入力(数字)です。ありがとう、歓声。入力はJS
<head>
<script type="text/javascript">
var juarel = "http://someurl.com/?value=";
var velju = document.getElementById('somenumber');
var rezon = juarel.concat(velju);
function print() {
alert(rezon);
}
</script>
</head>
<body>
<form>
<input type="number" id="somenumber" value="">
<button type="button" id="submit" name="button" onclick="print()">SUBMIT</button>
</form>
</body>
[あなたが代わりに '' juarel.concat(velju.value)を使用します。](https://stackoverflow.com/questions/11563638/javascript-how-テキスト入力フィールドの取得値) – castis
getelemntbyid.value – sTx