English 中文(简体)
从表一栏中删除 Java
原标题:Removing JavaScript code from within a Table column

这个问题在我现有的thread

下面是一条法典。 表一栏标有 Java本代码。 我想删除文字标签。 如何用其他方式来称 Java在单独的.js档案中的位置?

<tr>
    <td width="599" height="154" valign="top">  
        <script type="text/javascript">
            //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder)
            new fadeshow(fadeimages, 593, 163, 0, 3000, 1, "R")
            //new fadeshow(fadeimages2, 163, 225, 0, 3000, 0)/
        </script>
    </td>
</tr>
最佳回答

撰写 Java本功能,可在网页上找到所有<代码>td内容。 现在,你们需要一个“现在的召唤fa”的活动。 这通常是在Click事件。 因此,就每个<代码>td要素而言,在你的职能中,登记了一个叫作:的新功能:

td.onclick = function() { fadeshow(this, ...) };

问题回答

也许,你想重新思考一下使自己成为具体内容的how。 然后向阁下TD(......)提供身份证,或者在你关闭了载有各自TD(v1)的标签后,或在你可以忽略的全球初始化代码(v2)。

您可能需要通过特别安全局指定一个高点和宽度,以避免产生转移效应。

v1

...
</table>
<script type="...">
  new fadeshow(fadeimages, 593, 163, 0, 3000, 1, "R", 
      document.getElementById( fadeshow-goes-here ));
</script>

v2希望:

<body onload="applicationInit()">
...

(并将在应用Init中称作fadeshow(......)。)

我假定,文字在表格中写出一些超文本。 如果是,我期望它使用一份文件。 内部书写指挥。 如果情况如此,以任何有意义的方式加以改变,很可能需要改写文字。 因此,如果你不了解足够的联合材料来尝试,我就离开了它。 世界上的情况比这种情况更糟。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签