这不起作用:
Response.Write("<a href=view.aspx?type="+Content+"onclick="Delete('"+f+"')"> DELETE </a>");
<script language="javascript" type="text/javascript">
function Delete(path) {
path1 = unescape(path);
var myObject = new ActiveXObject("Scripting.FileSystemObject");
var myFolder = myObject.GetFolder(path1);
myFolder.Delete();
alert("Welcome");
}
</script>
但这行得通.
Response.Write("<a href=view.aspx?type="+Content+"onclick="Delete()"> DELETE </a>");
<script language="javascript" type="text/javascript">
function Delete() {
alert("Welcome");
}
</script>
我尝试使用 Delete() 的 onclick 来获得 ALERT 效果很好.但是添加参数时不起作用.请您帮帮我.请尝试很久.
I tried with onclick for Delete() to get just ALERT it worked well.
But it isn't working when add the parameters.Can you help me please.Trying for this from long time please.
首先,u 是十六进制数字的 escpae 代码.所以最好重新格式化它.
First of all, u is escpae code for a hex digit. So better re-format it.
其次,href=view.aspx?type=notes 也不是有效的 html 语法.请用双引号.
Second, href=view.aspx?type=notes is not a valid html syntax too. Double quotes please.
第三,在对它们调用任何方法之前,请输入一些代码来检查您的 javascript 变量(myObject,myFolder)是否有效(不为空).
Third, please put some code to check if your javascript variables (myObject,myFolder) are valid (not null) before invoke any method against them.
这篇关于单击带有 JAvascript.ASP.NET C# 的超链接时删除目录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
车牌检测有哪些好的算法?What are good algorithms for vehicle license plate detection?(车牌检测有哪些好的算法?)
Unity中图像的onClick事件onClick event for Image in Unity(Unity中图像的onClick事件)
运行总 C#Running Total C#(运行总 C#)
asp.net listview 在单击时突出显示行asp.net listview highlight row on click(asp.net listview 在单击时突出显示行)
从函数调用按钮 OnClickCalling A Button OnClick from a function(从函数调用按钮 OnClick)
ASP.net C# Gridview ButtonField onclick 事件ASP.net C# Gridview ButtonField onclick event(ASP.net C# Gridview ButtonField onclick 事件)