Questions tagged «prop»

18
.prop()与.attr()
因此jQuery 1.6具有新功能prop()。 $(selector).click(function(){ //instead of: this.getAttribute('style'); //do i use: $(this).prop('style'); //or: $(this).attr('style'); }) 还是在这种情况下他们做同样的事情? 如果我确实必须切换到using prop(),attr()那么如果我切换到1.6 ,所有旧呼叫都会中断? 更新 selector = '#id' $(selector).click(function() { //instead of: var getAtt = this.getAttribute('style'); //do i use: var thisProp = $(this).prop('style'); //or: var thisAttr = $(this).attr('style'); console.log(getAtt, thisProp, thisAttr); }); <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js"></script> <div id='id' style="color: …
2296 javascript  jquery  dom  attr  prop 

4
jQuery attr vs道具?
现在,这不仅仅是另一个问题了。我做了一些测试(http://jsfiddle.net/ZC3Lf/),修改了prop和attr,<form action="/test/"></form>​ 输出为: 1)道具修改测试 道具:http://fiddle.jshell.net/test/1 属性:http://fiddle.jshell.net/test/1 2)属性修改测试 属性:http://fiddle.jshell.net/test/1 属性:/test/1 3)属性然后进行道具修改测试 属性:http://fiddle.jshell.net/test/11 属性:http://fiddle.jshell.net/test/11 4)属性然后进行属性修改测试 属性:http://fiddle.jshell.net/test/11 属性:http://fiddle.jshell.net/test/11 现在,就我所知,我对两件事感到困惑: 道具:通过JavaScript进行任何修改后的当前状态 值:网页加载时html中定义的值。 现在,如果这是正确的, 为什么修改prop似乎可以使条件action完全合格,反之为什么不修改属性呢? 为什么修改propin 1)修改属性,那对我没有意义? 为什么修改attrin会2)修改属性,它们是要以这种方式链接? 测试代码 的HTML 的JavaScript var element = $('form'); var property = 'action'; /*You should not need to modify below this line */ var body = $('body'); var original …
102 javascript  jquery  attr  prop 

2
使用JavaScript获取用户代理
我想要一个可以捕获用户的用户代理并将其支持给属性的脚本。 我正在制作网站问题联系表格,通常需要知道用户使用的是哪种浏览器。如何检测用户代理字符串并将其支持为输入元素的值。 我的html看起来像: <input type="hidden" id="UserAgent" name="User Agent" /> 我希望将用户代理添加为value属性,使其看起来像: <input type="hidden" id="UserAgent" name="User Agent" value="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.53.11 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10" />
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.