admin管理员组文章数量:1342660
I'm trying to call a function with an onClick mand, but I get the error "Can't find variable" in the Safari console and no action is taken. I can't see any errors, but I must be missing something that is causing this to fail.
The link
<a href="JavaScript:void(0);" onclick="controlWallMonitor('layout','Playback');">Show playback layout</a>
The Javascript
<script type="text/javascript">
$(document).ready(function() {
function controlWallMonitor(variable, option) {
var WallMonitor = "10.0.50.163:9000";
$.ajax({
url: 'changelayout.php?target=' + WallMonitor + '&variable=' + variable + '&option=' + option,
});
return false;
};
});
I'm sure it'll end up being incredibly obvious, but I have been googling and trying things for about 2 hours now and can't for the life of me see the problem.
Cheers.
I'm trying to call a function with an onClick mand, but I get the error "Can't find variable" in the Safari console and no action is taken. I can't see any errors, but I must be missing something that is causing this to fail.
The link
<a href="JavaScript:void(0);" onclick="controlWallMonitor('layout','Playback');">Show playback layout</a>
The Javascript
<script type="text/javascript">
$(document).ready(function() {
function controlWallMonitor(variable, option) {
var WallMonitor = "10.0.50.163:9000";
$.ajax({
url: 'changelayout.php?target=' + WallMonitor + '&variable=' + variable + '&option=' + option,
});
return false;
};
});
I'm sure it'll end up being incredibly obvious, but I have been googling and trying things for about 2 hours now and can't for the life of me see the problem.
Cheers.
Share Improve this question asked Nov 2, 2012 at 1:03 teknetiateknetia 1271 gold badge1 silver badge8 bronze badges 2- Have you tried calling the function with the console? – PitaJ Commented Nov 2, 2012 at 1:13
- It worked for me after I moved the controlWallMonitor function out of the document ready – Kyle Commented Nov 2, 2012 at 1:15
1 Answer
Reset to default 10Remove the $(document).ready call from around the function, all you have to do is put it after the jQuery script inclusion.
EDIT: Also, instead of using onclick, use a jQuery event handler:
HTML:
<a href="JavaScript:void(0);" class="playback">Show playback layout</a>
JS:
$(document).ready(function(){
$("a.playback").click(function(){ controlWallMonitor('layout', 'Playback'); });
});
本文标签: javascriptCan39t find Variable when called function from onClickStack Overflow
版权声明:本文标题:javascript - Can't find Variable when called function from onClick - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743703694a2524754.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论