admin管理员组文章数量:1344322
How we can call start()
JavaScript function for this case from HTML:
(function() {
var never, start;
never = function() {
return alert("try");
};
start = function() {
return alert("try harder");
};
}).call(this);
My HTML
<input type="button" value="press" onclick="never()" ></input>
How we can call start()
JavaScript function for this case from HTML:
(function() {
var never, start;
never = function() {
return alert("try");
};
start = function() {
return alert("try harder");
};
}).call(this);
My HTML
<input type="button" value="press" onclick="never()" ></input>
Share
Improve this question
edited Aug 6, 2022 at 17:22
Brian Tompsett - 汤莱恩
5,89372 gold badges61 silver badges133 bronze badges
asked Dec 4, 2012 at 14:44
Mohit VermaMohit Verma
1,6602 gold badges21 silver badges31 bronze badges
2
- You should consider converting the script you provided to a class. – povilasp Commented Dec 4, 2012 at 14:48
-
Exactly like this, but
never
is not the global and therefore cannot be found. – Felix Kling Commented Dec 4, 2012 at 14:48
3 Answers
Reset to default 4When you assign event handler code to attributes, any functions that are used need to be available in the global variable scope.
To acplish this, you can make them properties of window
. Currently, your never
and start
functions are local to the IIFE function scope.
// IIFE function
(function() {
// var never, start; // local variables
// Make the functions globally scoped
window.never = function() {
return alert("try");
};
window.start = function() {
return alert("try harder");
};
}).call(this);
You can expose a single namespace if you prefer
// IIFE function
(function() {
var ns = window.ns = {};
// Make the functions globally scoped
ns.never = function() {
return alert("try");
};
ns.start = function() {
return alert("try harder");
};
}).call(this);
And then change your inline handler to use ns.never();
and ns.start();
.
First give your input tag an id:
<input id="someInputField" type="button" ... />
Next register a callback on it by executing code when the document is ready:
$(document).ready( function() {
// define a function called never
function never() {
alert( 'Never say never');
}
// register a function on the click event handler of that input tag:
$('#someInputField').click( never );
});
You may find it easier to use a javascript library like jQuery. Using that library you can do this:
<script type="text/javascript">
$(document).ready(function() {
var count = 0
$("#tryme").click(function () {
if (count == 0) {
alert('try');
count++
}
else if (count == 1) {
alert('try harder');
}
});
});
</script>
<input type="button" value="press" id="tryme" ></input>
本文标签: How to call JavaScript function from htmlStack Overflow
版权声明:本文标题:How to call JavaScript function from html - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743757739a2533815.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论