gpt4 book ai didi

javascript - jQuery 在更改值时设置字体大小奇怪的行为

转载 作者:行者123 更新时间:2023-11-28 06:06:02 27 4
gpt4 key购买 nike

我正在尝试使用 jQuery 和 Angular js 更改段落的字体大小。

每当用户更改字体大小时,p 标签的字体大小都会更改,它工作正常。但是有一个小错误,即每当用户设置值时,字体大小都会发生变化,但是如果他减小它,它不会减小而是增加,并且反之亦然并且会发生许多此类类似行为。

这是我的代码:

 <!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>


<style>
p{
height: 600px;
width: 600px;
font-size:17px;
}



</style>
</head>
<body>



<div ng-app="myApp" ng-controller="editor">
<label for="kys_font_size"> font size:</label>

<select ng-model="kys_selected_font" id="fontsize" name="kys_font_size" ng-options="page for page in FontSize(1, 150)">
</select>



</div>


<p contenteditable="true" id="content" >


</p>


<p></p>

<script>

var app = angular.module('myApp',[]);
app.controller('editor',function($scope){

$scope.FontSize = function(start, end) {
var size = [];
for (var i = start; i <= end; i++) {
size.push(i);
}
return size;
};


$("#fontsize").on('change',function(){
$("#content").css("fontSize",$scope.kys_selected_font+"px");

});
});

</script>
</body>



</html>

最佳答案

它的工作...

你必须使用 ng-change...

<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>


<style>
p{
height: 600px;
width: 600px;
font-size:17px;
}



</style>
</head>
<body>



<div ng-app="myApp" ng-controller="editor">
<label for="kys_font_size"> font size:</label>

<select ng-model="kys_selected_font" id="fontsize" name="kys_font_size" ng-options="page for page in FontSize(1, 150)" ng-change="update()">
</select>



</div>


<p contenteditable="true" id="content" >


</p>


<p></p>

<script>

var app = angular.module('myApp',[]);
app.controller('editor',function($scope){

$scope.FontSize = function(start, end) {
var size = [];
for (var i = start; i <= end; i++) {
size.push(i);
}
return size;
};

$scope.update = function(){
$("#content").css("fontSize",$scope.kys_selected_font+"px");
}



});

</script>
</body>



</html>

关于javascript - jQuery 在更改值时设置字体大小奇怪的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36446884/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com