在javascript输入框中插入元素



我是一名学习JavaScript的学生。我想把checkValue值在强标签输入框中,但我不知道如何编写JavaScript将其进入输入框。我需要找到cart_table的div吗?或者我应该找一个强标签?

<script>
$().ready(function() {
$("#optionSelect").change(function() {
var checkValue = $("#optionSelect").val();
var checkText = $("#optionSelect option:selected").text();
var product = $("#productname").text();
var price = parseInt($("#price").text());
var test = parseInt($(this).find(':selected').data('price'));
var hapgae = price + test
if (checkValue != "no") {
var whtml =
"            <div class="cart_table">n" +
"            <hr style='width: 300px; margin-bottom: 30px;'>" +
"            <p style='font-size: 17px;'>" + product + "</p>" +
"                <p style='font-size: 13px; margin-top: -10px; class="check" margin-bottom: 20px;'>" + checkText + "</p>" +
"                        <strong class="value_code2">" + checkValue + "</strong>n" +
"                   <input name="value_code" id="value_code" class="value_code">" +

强标签和输入标签参照本部分。

"                        <strong class="value_code2">" + checkValue + "</strong>n" +
"                   <input name="value_code" id="value_code" class="value_code">" +

首先我建议你使用反引号

var html = `
<div>
<span>Some HTML here ${some_var}</span>
</div>
`; 

这节省了您的时间和精力,然后您可以在任何您想要的地方插入变量

也检查这个线程

在JavaScript中创建多行字符串

相关内容

  • 没有找到相关文章

最新更新