记录按钮点击次数,点击三次之后跳转页面

Posted 诗为马

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录按钮点击次数,点击三次之后跳转页面相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>
</head>
<body>

<div ng-app="myApp" ng-controller="personCtrl">

<button ng-click="toggle()">点击</button>
</div>

<script>
var app = angular.module(‘myApp‘, []);
app.controller(‘personCtrl‘, function($scope) {
var submitml=0;  //(设置变量,初始为0)
$scope.toggle = function() {
submitml++;    //(当点击一次按钮,自加一)
if(submitml<3)
{
alert(submitml)
}else
{
window.location.href=‘http://www.baidu.com‘;
}
};
});
</script>

</body>
</html>

以上是关于记录按钮点击次数,点击三次之后跳转页面的主要内容,如果未能解决你的问题,请参考以下文章

如何用js添加点击事件,点击后跳转到指定动态页面

html制作,点击按钮在页面上显示文字5秒后跳转网页

JAVA 点击按钮后跳到另一个界面

wpf怎么new一个新窗口(就是点击按钮后跳到一个新窗口,就像页面跳转那样)

JS 点击确定后跳转到指定页面

ASPX直接打印后跳转页面如何实现