如何远程切换元素的显示?我将没有服务器访问权限
谁能推荐远程切换元素显示的最简单方法?我无法访问服务器,所以我想知道是否有一种方法可以远程切换元素的显示,在这种情况下从纯色切换到褪色?我正在使用 dashcode,但我不知道跨域策略对此有何影响。
$(document).ready(function(hideStuff) {
$('.image2_template').css({ 'opacity' : 0.1 });
$('.text3_template').css({ 'opacity' : 0.1 });
Can anyone recommend the easiest way to toggle the display of an element remotely? I won't have access to the server so I was wondering if there is a way to remotely toggle the display of an element, in this case from solid to faded? I'm using dashcode and I don't know how cross domain policy impacts this.
$(document).ready(function(hideStuff) {
$('.image2_template').css({ 'opacity' : 0.1 });
$('.text3_template').css({ 'opacity' : 0.1 });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Dashcode 小部件中做同样的事情…我在小部件的网站上有一个
version.js
文件,如果该文件报告的版本号比用户使用的版本号新,那么他们'会看到更新提示。我所做的基本上是这样的:在 AJAX 查询的回调函数中,检查您需要的任何内容;如果您的显示需要更改,请继续执行
或任何您需要执行的操作。
请注意,您需要访问某处的某些服务器才能使其正常工作。
I’m doing the same sort of thing in a Dashcode widget… I have a
version.js
file on the widget’s website, and if that file reports a newer version number than what the user’s using, they’ll see a prompt to update. What I did was basically this:In the callback function for the AJAX query, check whatever you need to; if your display needs to change, then go ahead and do
or whatever you need to do.
Note that you will need access to some server somewhere in order for this to work.