我有這個代碼,它動態顯示文檔'div'中輸入字段的值。 我已經設置了'div'max-width屬性,但它看起來像只在輸入字符串內有空格時才起作用,如果沒有'div'字符串中的字符串可以繼續並且繼續。在一行中。 我該如何解決這個問題?動態輸入最大寬度
<!DOCTYPE html>
<html>
<head>
<style>
div {
max-width: 300px;
font-size:40px;
color:red;
font-weight:bold;
background-color:yellow;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("input").keyup(function(){
$("div").text($("input").val());
});
});
</script>
</head>
<body>
Sample value: <input type="text">
<div></div>
</body>
</html>
可能的重複https://stackoverflow.com/questions/1147877/how-to-word-wrap-text-in-html –