JS基础知识充电站
1.javascript alert弹出对话框时确定和取消两个按钮返回值?
用的不是alert对话框,是confirm
confirm(str);
参数str:你要说的话或问题;
返回值:bool类型,返回用户是否点击确定。如果点击确定,返回true,如果点击取消或小叉子关闭对话框,返回false;
var r=confirm("确认还是取消?")
console.log(r);
2.js文件中插入html代码
var div = document.createElement("div");
div.innerHTML = "<b>Huaqiang Sun 路过</b>"; document.body.appendChild(div);
3.Angularjs中js如何实现跳转到一个路由中的状态?
$state.go('producer', {producerId: producerId});
js实现html页面跳转
window.location.href='index.html';
内容不断补充中.....