码迷,mamicode.com
首页 > 其他好文 > 详细

阻止默认行为执行

时间:2016-01-06 01:38:11      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

jsp代码:


<%@ page language ="java" pageEncoding="UTF-8"%>
<%@ taglib uri ="http://java.sun.com/jsp/jstl/core" prefix= "c"%>
<%@taglib prefix= "s" uri="/struts-tags" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 
<head>
<title> 仓库管理</title >
<link rel= "stylesheet" type ="text/css"
     href="< c:url value= ‘/css/maple.css‘/>" ></link >
<style type= "text/css">
.tx td {
     padding: 3px;
}
 
.store {
     width: 100%;
     border: 1px solid gray;
     border-collapse: collapse;
}
 
.store td {
     border: 1px solid gray;
     padding: 3px;
}
 
.store a {
     text-decoration: underline;
     color: blue;
}
</style>
 
<script type= "text/javascript"
     src="${pageContext.request.contextPath} /js/jquery-1.7.2.js"></script >
<script type= "text/javascript">
      // 页面加载执行下面函数
     $( function() {
            // 给超链接添加点击事件
           $( "a[name=‘deleteStore‘]" ).click(function(event) {
                 // 弹出框提示信息
                var flag = window.confirm("确认删除吗?");
                 if (!flag) {
                      // 取消默认行为执行
                     event.preventDefault();
                }
           });
 
     });
</script>
</head>
<body>
 
 
<href= "${pageContext.request.contextPath} /store_delete?id=<s:property value ="#store.id"/>"
 name= "deleteStore">删除</a >
 

 
项目截图:

js文件的位置:
技术分享
 
 

注意script标签的位置:
技术分享
 
 

a标签:
技术分享
 
 

阻止默认行为执行

标签:

原文地址:http://www.cnblogs.com/lydong/p/5104203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!