所以我试着:
body :not(.cc) { display: none; }
还有我在这里找到的其他各种东西。(!important,*而不是body,...)我甚至用那个类而不是td-element尝试了span-element。什么都不管用。
<html>
<body>
<table><tr><td class="cc">text</td></tr></table>
Other text to not ne shown.
</body>
</html
使用下面的代码,我正在显示弹出窗口。我使用了toggle()动画方法。但它只显示弹出窗口一次。原因何在?我该如何解决这个问题?
代码:
$(document).ready(function()
{
$(".ishow").click(function()
{
var info=$(this).attr("id");
var id=info.replace("/","");
var cor=$(".rd"+id).offse
我正在尝试居中一个div,这是我到目前为止得到的结果:
function miniWindow(content) {
$('#miniWindow').hide();
$('#miniWindow').css({'top' : '280px', 'left' : '385px'}); //start position
$('#miniContent').html(content); //<-- the problem line
//center
如何使用jquery隐藏所有HTML标记。不是移除而是躲藏。我是否需要单独指定每个标记,或者是否有一个更健壮/可伸缩的解决方案?
示例字符串:
My name is <b>Joe</b> and I like <span style="color:red;">long walks</span> on the <i>beach</i>.
结果
My name is and I like on the .