<script type="text/javascript">
<scripttype="text/javascript"><!--vartheForm=document.forms['form1'];if(!theForm){the...
<script type="text/javascript">
<!--
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
// -->
</script>
谁能解释一下,这段代码的意思,最好能说的详细点
我使用C#.net做的一个小程序,生成这段代码的原因我知道是因为我把一个控件的属性设置为AutoPostBack,在客户端的页面就生成了这段代码,但我不知道具体的意思,谁能解释一下,分数可以多加,谢谢了! 展开
<!--
var theForm = document.forms['form1'];
if (!theForm) {
theForm = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
// -->
</script>
谁能解释一下,这段代码的意思,最好能说的详细点
我使用C#.net做的一个小程序,生成这段代码的原因我知道是因为我把一个控件的属性设置为AutoPostBack,在客户端的页面就生成了这段代码,但我不知道具体的意思,谁能解释一下,分数可以多加,谢谢了! 展开
3个回答
展开全部
<script type="text/javascript">
<!--
// 你的页面中有一个form表单,它的name属性为form1,这句话就是获得// 这个表单的对象
var theForm = document.forms['form1'];
// 如果上一种方式无法取得制定对象,那么就用这种方式取
if (!theForm) {
theForm = document.form1;
}
/**
* 回调请求处理
*/
function __doPostBack(eventTarget, eventArgument) {
// 如果form表单没有提交
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
// 设置form的属性__EVENTTARGET.value
theForm.__EVENTTARGET.value = eventTarget;
// 设置form的属性__EVENTARGUMENT.value
theForm.__EVENTARGUMENT.value = eventArgument;
// 将form提交
theForm.submit();
}
}
// -->
</script>
<!--
// 你的页面中有一个form表单,它的name属性为form1,这句话就是获得// 这个表单的对象
var theForm = document.forms['form1'];
// 如果上一种方式无法取得制定对象,那么就用这种方式取
if (!theForm) {
theForm = document.form1;
}
/**
* 回调请求处理
*/
function __doPostBack(eventTarget, eventArgument) {
// 如果form表单没有提交
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
// 设置form的属性__EVENTTARGET.value
theForm.__EVENTTARGET.value = eventTarget;
// 设置form的属性__EVENTARGUMENT.value
theForm.__EVENTARGUMENT.value = eventArgument;
// 将form提交
theForm.submit();
}
}
// -->
</script>
参考资料: 、、
展开全部
text/javascript这是一种MIME 类型。其中一些值:
text/javascript
text/ecmascript
application/ecmascript
application/javascript
text/vbscript
MIME 类型由两部分组成:媒介类型和子类型。对于 JavaScript,其 MIME 类型是 "text/javascript"。
在现在的浏览器中经常会省略成<script></script>
text/javascript
text/ecmascript
application/ecmascript
application/javascript
text/vbscript
MIME 类型由两部分组成:媒介类型和子类型。对于 JavaScript,其 MIME 类型是 "text/javascript"。
在现在的浏览器中经常会省略成<script></script>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这不是网页里的么。。。。。还是JAVASCRIPT语言的~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询