作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<div id="default">
<h2> heading </h2>
<div id="big-on-hover">
<h2> heading </h2>
我想渲染 h2
的文本的<div id="default">
在<div id="big-on-hover">
因为两者总是相同的,所以我会在一个地方进行更改,它也会显示所有其他地方。
最佳答案
你可以尝试这样的事情:
$(document).ready(function() {
$('#default h2').mouseover(function() {
var text = $('#default h2').html();
$('#big-on-hover h2').html(text);
});
});
关于javascript - 如何从一个地方获取文本然后在同一页面的其他地方呈现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3636784/
我是一名优秀的程序员,十分优秀!