我有一个输入框名字和姓氏。单击按钮时,模式将显示并填充输入框名称fullname,但其中包含空格。
例子:" marvin"和"卡斯特罗" =>点击按钮=> " marvin castro"
但我得到的就是这个," marvincastro"
我的代码在这里
$("#submit").click(function () {
$("#register").modal('show');
$("#inputfname").text($('#fname').val()+ $(' ').val() + $('#lname').val());
});
如果我喜欢这样,
// trying to remove points which do not show up on reload
marker.exit().remove()
// end trying to remove points which do not show up on reload
marker.enter().append("svg")
.each(transform)
.attr("class", "marker");
输出如下:" marvinundefinedcastro"
提前致谢
答案 0 :(得分:0)
$("#submit").click(function () {
$("#register").modal('show');
$("#inputfname").text($('#fname').val() + " " + $('#lname').val());
});
不要让它变得复杂,只需在它们之间添加一个空格。