jQuery中attr()和prop()的区别
2021-04-25 02:29
标签:elements cli www element func alt lse amp disable 在input框中输入https://dss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=3280118583,682504340&fm=85&app=79&f=JPEG?w=121&h=75&s=5C05F616CD345C0156FCA97E03005073, 然后点击切换图片,效果如下: 两个方法都能实现一样的功能,但官方的建议是:具有 true 和 false 两个属性的属性,如 checked, selected 或者 disabled 使用prop(),其他的使用 attr() jQuery中attr()和prop()的区别 标签:elements cli www element func alt lse amp disable 原文地址:https://www.cnblogs.com/xdsuannai/p/12230879.htmlDOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
title>18-attr和prop方法练习title>
script src="js/jquery-1.12.4.js">script>
script>
$(function () {
var btn = document.getElementsByTagName("button")[0];
btn.onclick = function () {
var input = document.getElementsByTagName("input")[0];
var text = input.value;
$("img").attr("src", text);
// $("images").prop("src", text);
}
});
script>
head>
body>
input type="text">
button>切换图片button>br>
img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
body>
html>
上一篇:原生js操作dom的总结
下一篇:C# 单例模式的多种简单实现
文章标题:jQuery中attr()和prop()的区别
文章链接:http://soscw.com/index.php/essay/79220.html