参照weui的路由模式,我创建了type="text/html"模板进行跳转
//html
<script type="text/html" id="tpl_list">...</script>
//跳转
window.location.href = "#list"
我现在能正常引用type="text/html"模板,在tpl_list
这个模板里面我需要点击input跳转新的页面
//html
<input id="search_list" type="text">
//js
$("#search_list").bind('keypress', function (event) {
console.log(event);
if (event.keyCode == "13") {
console.log(1);
window.location.href = "#button"
}
});
但是js正常写,跳转到tpl_list
后,点击input无响应,此时手动刷新网页,点击input才有跳转效果
请问有什么解决办法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你用DOM操作就必须加载完才能操作,你使用vue就应该把事件绑定到模板的具体元素上