为什么 logfunc
"没有定义?
var logfunc = function(obj) {
return function() {
console.log(obj)
}
}
t += <a onclick="logfunc(this)"><</a>
为什么 logfunc
"没有定义?
var logfunc = function(obj) {
return function() {
console.log(obj)
}
}
t += <a onclick="logfunc(this)"><</a>
如果被宣布不属于全球范围,则无法查阅 longfunc
的引用, fidd
我不主张通过省略 var
来直接宣布全球范围的变量,但它提供了一个很好的例子:
function setupStuff() {
var logfunc = function(obj) { //defined within setupStuff scope
/*...*/
}
t += <a onclick="logfunc(this)"><</a> ;
}
function setupStuffDifferently() {
logfuncB = function(obj) { //defined in the global scope
/*...*/
}
t += <a onclick="logfuncB(this)"><</a> ;
}
我更愿意看到这个功能 单独宣布,就像
t += <a onclick="logfunc(this)"><</a> ;
function logfunc(obj) { //this would work when assigned through `onclick`
/*...*/
}
如果您可用此选项, 我建议您使用像 jQuery 这样的图书馆, 它在 < a href=> "http://api.jquery.com/ kick/"rel=“ nofollow” 指定和处理点击事件 a> 中提供更大的灵活性 。
您再次获得“ logfunc 尚未定义” 错误, 因为您的 logfunc
在全球范围( 即 < code> window ) 中不存在, 使用 HTML 元素属性约束的范围和函数必须是全球性的 。
你可以通过说:
window.logfunc = function(obj) {
return function() {
console.log(obj)
}
};
但既然 logfunc
仅返回一个调用 connole.log
和 的函数,却仍不会做你认为会做的事,因为
logfunc
仅返回一个调用 concolole.log
和 的函数,而
却不知道它应该调用
函数 () { controad.log(obj) {/code> 的函数, 它会把它看作一个真正的值。
window.logfunc = function(obj) {
console.log(obj)
};
如果您想要单击链接生成一个控制台消息 。
至于“on kick
和通过DOM”之间的区别是:
onclick
but you can call addEventListener
as often as you want. You can get around this limitation if you want to paste JavaScript snippets together as strings but that s nasty.addEventListener
call using removeEventListener
; removing an event handler from an onclick
attribute involves even nastier string wrangling than adding one does.onclick
unnecessarily entangles your HTML and JavaScript and that leads to a maintenance nightmare.How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.
I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...
Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...
Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...
I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...
Is it possible for someone to give me a few pointers on how to display a multidimensional array in the form of a bar graph? The array is multidimensional, with three elements in each part - and the ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.