私が望んでいるのは、ユーザーがテキスト フィールドに数値を入力できるようにすることです。ボタンをクリックすると、テキスト フィールドの値が変数に転送されます。そして、ページを更新せずにこれを行いたいので、input type="submit" を使用することは私が行ったことではなく、input type="button" を使用しました。
そして、jQuery を使用して目標を達成したいと考えています。
<script type="text/javascript">
var textAlteredStyle;
function setTL() {
textAlteredStyle = document.getElementById('alterTL').value;
}
</script>
<script type="text/javascript">
$(document).ready(function() {
document.getElementById('alter').onclick = setTL;
$('#theModified').replace('<input type="text" id="theModified" style="width: 153px; border-top-left-radius: '+textAlteredStyle+'px;">');
});
});
</script>
</head>
<body>
<input type="text" id="theModified" style="width: 153px;">
<br><br>
<input type="text" id="alterTL">pixels
<br>
<input type="button" value="Alter" id="alter">