html input onchange 不接受匿名函数

问题描述 投票:0回答:5

为什么这不起作用?

 <input type="file" id="kmlFiles2" multiple onchange="function(){alert('why does this not work')}()">

chrome 给我一个错误, 未捕获的语法错误:意外的标记 (.

Firefox 告诉我语法错误:函数语句需要名称

但这确实有效吗?

 <input type="file" id="kmlFiles2" multiple onchange="alert('but this does work')">

http://jsfiddle.net/ewzyV/

我问这个问题是因为我正在尝试使用将代码注入 onchange 事件的 MVC 框架。

javascript html model-view-controller input
5个回答
19
投票
onchange="(function(){alert('this should work')})()"

2
投票

创建内联函数不是一个好的做法。

我会建议类似的东西

<html>
 <script>
   function myFunction(){
     alert('hey it works');
   }
 </script>
 <body>
 <input type ='file' id='kmlFiles2' onchange="myFunction();" />
 </body>
 </html>

你也可以考虑写

function init(){
   document.getElementById('kmlFiles2').onclick=function(){alert('this also works');};
}
window.onload=init;

0
投票

您无法从 html 元素调用匿名函数,因此您可以通过事件处理来实现此目的,例如:

<input type="file" id="kmlFiles2" multiple>
 <script>
    document.getElementById("kmlFiles2").addEventListener("change", function(){
        alert('This is working')
    })
 </script>

0
投票
 בס''ד

使用您的代码段:

    onchange="function(){alert('why does this not work')}()"

有一个基本问题。我希望 https://www.w3schools.com/jsref/event_onchange.asp Javascript 的格式是(而不是):

    object.onchange = function(){myScript};

onchange 事件,即“对象”。已经是隐式的,所以预期使用的正确形式是:

    onchange= "function(){alert("Why does this not work?"); return;}"

没有“返回”;语句很少会出现问题,但即使如此,我也包含它以使功能完整。

我遇到了类似的情况,正在努力解决,因此非常感谢您提出这个问题。谢谢您,祝您编程顺利!

我从这个参考开始:

https://www.w3schools.com/js/js_function_definition.asp

    After a function expression has been stored in a variable, the 
    variable can be used as a function:
    Example
    var x = function (a, b) {return a * b};
    var z = x(4, 3); 

我发现以下代码可以正常工作:

    onchange="{alert('Hello 10'); alert('Hello 20'); return; }"

“function()”似乎也是隐式的。我测试了它,警报发布了两次。我一开始只发出一个警报。既然它对我有用,你可能想给它一个提示,希望它“应该”对你也有用。

使用内联函数测试一段时间后,为了使某些功能始终工作,它们似乎不稳定。所以我最终得到了下面的代码,它对我来说非常有效,只需定义一个函数来完成需要完成的事情:

<td><strong>Number of Posts For the Carousel to Show:</strong></td>
<td style="text-align: center; vertical-align: middle; padding: 10px;" colspan="2">
<input id="<?php echo esc_attr( $this->get_field_id( 'ceupoststoshow' ) ); ?>" style="vertical-align: middle; horizontal-align: middle;" max="20" min="1" step="1" type="range" value="<?php echo esc_attr( $titleooi ); ?>" onchange="updatetwopoststoshowtext(this.value, this.id, 'ceupoststoshow' , 'titleooi','ceupoststoshowtext')" >
<script type="text/javascript">
function updatetwopoststoshowtext(thistextvalue, thisfieldid, thisoldfromid, thisnewtoidone, thisnewtoidtwo) {
updatepoststoshowtext(thistextvalue, thisfieldid, thisoldfromid , thisnewtoidone);
updatepoststoshowtext(thistextvalue, thisfieldid, thisoldfromid , thisnewtoidtwo);
}
</script>

</td>
<td>
<input style="width: 90%;" type="text" id="<?php echo esc_attr( $this->get_field_id( 'ceupoststoshowtext' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'ceupoststoshowtext') ); ?>" type="text" value="<?php echo esc_attr( $titleooi ); ?>" onchange="updatepoststoshowtext(this.value, this.id, 'ceupoststoshowtext' , 'titleooi')" >

<script type="text/javascript">
function updatepoststoshowtext(thistextvalue, thisfieldid, thisoldfromid, thisnewtoid) {
var strthistextvalue= String(thistextvalue); var strthisfieldid = String(thisfieldid); 
var strthisoldfromid=String(thisoldfromid); var strthisnewtoid = String(thisnewtoid);
alert ("UPST hello there! strthistextvalue = " + strthistextvalue + " strthisfieldid = " + strthisfieldid + " strthisoldfromid = " + strthisoldfromid + " strthisnewtoid = " + strthisnewtoid );

var subfieldidlength = strthisfieldid.length - strthisoldfromid.length;
var substrfieldid = strthisfieldid.substring (0, subfieldidlength);
alert ("UPST hello there two! subfieldidlength = " + subfieldidlength + " substrfieldid = " + substrfieldid);

var newstrfieldid = substrfieldid + strthisnewtoid;
alert ("UPST hello there three one! newstrfieldid = " + newstrfieldid);
var newElementId = document.getElementById(newstrfieldid);  
alert ("UPST hello there three two! newElementId.value = " + newElementId.value);
(document.getElementById(newstrfieldid)).value = strthistextvalue;
alert ("UPST hello there three! (document.getElementById(newstrfieldid)).value = " + strthistextvalue);

alert ("document.getElementById (newstrfieldid = " +  newstrfieldid + " ) . value = thistextvalue = " + thistextvalue);
return;
}
</script>

0
投票

如果你想在 ***="" 标签中使用代码

你可以只使用 {} 括号,就像导出默认值一样,但你仍然可以使用它和事件

© www.soinside.com 2019 - 2024. All rights reserved.