Contains 2 pages, one is the page to display the picture, one is to pass the filename, and then delete the real picture of the page. The specific code is as follows:
Showpics.htm:
Copy CodeThe code is as follows:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<title>untitled page</title>
<script src= "Js/jquery-1.4.4.js" type= "Text/javascript" ></script>
<script src= "Js/json2.js" type= "Text/javascript" ></script>
<script type= "Text/javascript" >
$ (function () {
$ ("Body img"). Click (function () {
var name = $ (this). attr ("alt");
$.ajax ({
URL: "Deletepicsform.aspx",
Data: "Picname=" +name,
DataType: "JSON",
Type: "Get",
ContentType: "Application/json; Charset=utf-8 ",
Success:function (data, textstatus) {
alert (Data.result);
},
Error:function (XMLHttpRequest, Textstatus, Errorthrown) {
alert (XMLHttpRequest);
}
});
});
});
</script>
<body>
<div>
</div>
</body>
The code for the specific deleted page is as follows:
For the above picture name transmission, is using the get way, want to change post way can use the following method:
Copy CodeThe code is as follows:
$ (function () {
$ ("Body img"). Click (function () {
var name = $ (this). attr ("alt");
$.ajax ({
URL: "Deletepicsform.aspx",
Data: {Picname:name},
DataType: "JSON",
Type: "Post",
Success:function (data, textstatus) {
alert (Data.result);
},
Error:function (XMLHttpRequest, Textstatus, Errorthrown) {
alert (XMLHttpRequest);
}
});
});
});
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.