什么是自动将某人redirect到另一个网页的最佳方式?

我从来没有学过JavaScript,但我想这是一个相当简单的问题。 只是想知道最近build议哪种方法。

Emacs命令删除最多非空白字符

我经常想做一个多行函数调用并将其减less到一行。 例如,转换… function_call( 'first_arg', 'second') 至 function_call('first_arg', 'second') emacs是否有一些命令来帮助解决这个问题。 具体来说,是否有一个命令,将从点删除所有空白到第一个非空白字符?

任何好的正则expression式创build软件或在线工具创build正则expression式

有没有人有任何良好的链接到一个网站或一个很好的工具来创build正则expression式,而不是打破你的头来创build一个。 该工具应该能够通过简单地select某种模式文本来创build正则expression式。 例如,如果我想要一个电话号码进行validation,我应该可以input(000) – (111) – (1111)或000-000-0000或000-0000000,工具shold会自动生成正则expression式。

button中心CSS

平常的CSS居中问题,只是不为我工作,问题是,我不知道完成宽度像素 我有一个整个导航的div,然后每个button里面,当不止一个button,他们不再中心。 🙁 CSS .nav{ margin-top:167px; width:1024px; height:34px; } .nav_button{ height:34px; margin:0 auto; margin-right:10px; float:left; } HTML <div class="nav"> <div class="nav_button"> <div class="b_left"></div> <div class="b_middle">Home</div> <div class="b_right"></div> </div> <div class="nav_button"> <div class="b_left"></div> <div class="b_middle">Contact Us</div> <div class="b_right"></div> </div> </div> 任何帮助将不胜感激。 谢谢 结果 如果宽度是未知的,我确实find了一个button的中心,不完全是开心的,但没有关系,它的工作原理:D 最好的办法是把它放在一张桌子上 <table class="nav" align="center"> <tr> <td> <div class="nav_button"> <div class="b_left"></div> <div class="b_middle">Home</div> […]

Toast和OnClickListener无效组合导致错误

我想在OnCLickListener使用Toast 。 我的代码触发以下错误: The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (new View.OnClickListener(){}, String, int) 这是我的代码: Button register = (Button) findViewById(R.id.register); register.setOnClickListener(new View.OnClickListener() { public void onClick(View arg0) { EditText name = (EditText)findViewById(R.id.name); String Lname = name.getText().toString(); Toast.makeText(this, Lname, Toast.LENGTH_SHORT).show(); } });

Javascriptmath对象方法 – 负数为零

在Javascript中,我似乎无法find一种方法来设置负数为零? -90变成0 -45变成0 0变成0 90变成90 有没有这样的事情? 我刚刚四舍五入的数字。

意外的文件错误结束

我希望你能帮助我,因为我不知道发生了什么。 在尝试将Beecrypt库添加到我的项目时出现以下错误: 致命错误C1010:在查找预编译头文件时出现意外的文件结尾。 你忘了添加“#include”stdafx.h“”到你的源? 其实我没有忘记添加#include“stdafx”给我的来源。 编译器将错误指向该.cxx文件的末尾: #define BEECRYPT_CXX_DLL_EXPORT #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "beecrypt/c++/security/SecureRandom.h" #include "beecrypt/c++/security/SecureRandomSpi.h" #include "beecrypt/c++/security/Security.h" using namespace beecrypt::security; SecureRandom* SecureRandom::getInstance(const String& algorithm) throw (NoSuchAlgorithmException) { Security::spi* tmp = Security::getSpi(algorithm, "SecureRandom"); assert(dynamic_cast<SecureRandomSpi*>(tmp->cspi)); SecureRandom* result = new SecureRandom(reinterpret_cast<SecureRandomSpi*>(tmp->cspi), tmp->prov, tmp->name); delete tmp; return result; } SecureRandom* SecureRandom::getInstance(const String& type, const String& provider) […]

如何使用纯JavaScript来调整HTML元素的大小?

我想知道如何使用纯JavaScript而不是jQuery库或任何其他库来构build像<div>或<p>标签元素可resize的HTML元素。

FragmentPagerAdapter getItem没有被触发

目前,使用FragmentActivity ,我使用以下代码在2种片段之间切换。 private void toggle() { Fragment oldFragment = getSupportFragmentManager().findFragmentById(R.id.content); Fragment fragment = null; if (oldFragment instanceof ColorFragment) { fragment = new ViewPagerFragment(); } else { fragment = new ColorFragment(android.R.color.black); } getSupportFragmentManager().beginTransaction().replace(R.id.content, fragment).commitAllowingStateLoss(); } 2片段正在切换。 ColorFragment – 用纯黑色填充背景的简单片段。 ViewPagerFragment – 片段包含ViewPager 。 用户可以在紫色的颜色片段和蓝色的颜色片段之间滑动。 负责划动紫色和蓝色碎片的代码如下。 private static class MyFragmentPagerAdapter extends FragmentPagerAdapter { public MyFragmentPagerAdapter(FragmentManager fm) { […]

点击手势识别器 – 哪个对象被点击?

我是手势识别器的新手,所以也许这个问题听起来很愚蠢:我将轻拍手势识别器分配给一堆UIViews。 在这个方法中,有可能找出哪个是被点击的,或者我需要使用屏幕上的点来找出它? for (NSUInteger i=0; i<42; i++) { float xMultiplier=(i)%6; float yMultiplier= (i)/6; float xPos=xMultiplier*imageWidth; float yPos=1+UA_TOP_WHITE+UA_TOP_BAR_HEIGHT+yMultiplier*imageHeight; UIView *greyRect=[[UIView alloc]initWithFrame:CGRectMake(xPos, yPos, imageWidth, imageHeight)]; [greyRect setBackgroundColor:UA_NAV_CTRL_COLOR]; greyRect.layer.borderColor=[UA_NAV_BAR_COLOR CGColor]; greyRect.layer.borderWidth=1.0f; greyRect.userInteractionEnabled=YES; [greyGridArray addObject:greyRect]; [self.view addSubview:greyRect]; NSLog(@"greyGrid: %i: %@", i, greyRect); //make them touchable UITapGestureRecognizer *letterTapRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(highlightLetter)]; letterTapRecognizer.numberOfTapsRequired = 1; [greyRect addGestureRecognizer:letterTapRecognizer]; }