Jquery onclick 不适用于 IE7
这是我的代码。它适用于 Firefox、Chrome,但不适用于 ie7。
arr 为每一行生成 (number + 1) 。
$("#div-id1 a").attr("onclick", function (arr) {
return "document.getElementById('row1').value+=" + arr;
});
$("#div-id2 a").attr("onclick", function (arr) {
return "document.getElementById('row2').value+=" + arr;
});
<input id="row1" type="text" name="row1" value="" />
<input id="row2" type="text" name="row2" value="" />
我的 js 代码在这之间。
jQuery(function($){...code...});
我添加了 onclick,因为链接看起来像这样。
代码输出是:
<a onclick="document.getElementById('row1').value+=1">Hello World</a>
有人可以向我展示工作示例吗?
This is my code. It works to Firefox, Chrome but not in ie7.
arr makes (number + 1) for every line..
$("#div-id1 a").attr("onclick", function (arr) {
return "document.getElementById('row1').value+=" + arr;
});
$("#div-id2 a").attr("onclick", function (arr) {
return "document.getElementById('row2').value+=" + arr;
});
<input id="row1" type="text" name="row1" value="" />
<input id="row2" type="text" name="row2" value="" />
My js codes are between this.
jQuery(function($){...code...});
I am adding onclick, because links are looking like this.
<a>Hello World</a>
Code output is :
<a onclick="document.getElementById('row1').value+=1">Hello World</a>
Can someone show me working example ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你做错了。
向
onclick
属性添加函数是否有效?是的,在某些浏览器中,但是您没有充分利用 jQuery 的规范化事件。设置点击事件的 jQuery 方法是使用click(fn)
、bind('click', fn)
或live('click', fn )
此外,由于您尚未显示脚本与 HTML 的关系,因此 dom 元素可能尚不存在。使用
live
会将事件委托给文档,以便它继续检测与选择器匹配的新元素。或者,您可以使用document ready
事件:长格式:
短格式:
有关详细信息,您应该阅读 jQuery API。
You're doing it wrong.
Will adding a function to the
onclick
attribute work? yes, in some browsers, but you're not making good use of jQuery's normalized events. The jQuery way of setting a click event is to useclick(fn)
, orbind('click', fn)
orlive('click', fn)
Additionally, since you haven't shown where your script is in relation to the HTML, it's possible that the dom elements dont exist yet. Using
live
will delegate the event to the document so that it continues to detect new elements that match the selector. Alternatively you could use thedocument ready
event:Long form:
Short form:
For more info you should read the jQuery api.
将其放入
$(document).ready(...
:请阅读 http: //api.jquery.com/ready/
Put it into a
$(document).ready(...
:Please read http://api.jquery.com/ready/
不要设置属性 onclick - 将函数传递给 jquery click 函数
你能进一步解释一下 arr 吗?您需要对代码进行一些修改,使其适用于 click 而不是 attr。
Don't set attribute onclick - pass a function to the jquery click function
Can you explain further about arr though? You would need to make some modifications to the code to make it work with click instead of attr.