小编gba*_*de_的帖子

获取选择标记以进行响应

我目前正在使用HTML5和CSS3编写一个响应式页面,在我的HTML中,我有一个表单.表单包含一个响应的表,并在页面缩小时折叠.我唯一的问题是select标签不会与其他表单元素一起折叠.这是我的HTML和CSS -

<tr>    
    <td id="content">Email Address</td>
    <td><input type="text" name="name" id="name" class="form"></td>
</tr>

<tr>
    <td id="content">Password</td>
    <td><input type="password" name="name" id="name" class="form"></td>
</tr>

<tr>
    <td id="content">Confirm Password</td>
    <td><input type="password" name="name" id="name" class="form"></td>
</tr>

<tr>
    <td id="content">Security Question</td>
    <td>
        <select class="form">
            <option value="#">--Select Question--</option>
            <option value="#">What Is Your Father's Middle Name?</option>
            <option value="#">In What Town Did You Spend Most Of Your Youth?</option>
            <option value="#">What Was Your Best Friend's Name When You Were A Child?</option>
            <option value="#">What Was Your Favorite Childhood Pet's Name?</option>
            <option …
Run Code Online (Sandbox Code Playgroud)

html css css3 responsive-design

5
推荐指数
1
解决办法
1万
查看次数

href 不断向 URL 添加本地文件路径

我在这里有点困难。我正在尝试将<a>标记设置为外部 URL。但是每次我这样做时,都会将包含 URL 的 index.html 的本地路径添加到链接中。我查看了我的 jQuery 代码,但似乎没有看到问题所在。我什至使用 console.log(url) 进行测试,它正确返回 URL。

$('.smoothscroll').on("click", function() {
    if (nav.hasClass('mobile')) nav.fadeOut('fast');
})

$('.smoothscroll').on('click', function (e) {
    e.preventDefault();

    var target = this.hash,
    $target = $(target);

    $('html, body').stop().animate({
        'scrollTop': $target.offset().top
    }, 800, 'swing', function () {
        window.location.hash = target;
    });
});
    
$('#login').on('click', function (e){
    e.preventDefault();
    var url = $(this).attr('href');
    window.open(url, '_blank');
});
Run Code Online (Sandbox Code Playgroud)
<ul id="nav" class="nav">
    <li class="current"><a class="smoothscroll" href="#hero">Home.</a></li>
     <!--<li><a class="smoothscroll" href="#portfolio">Works.</a></li>-->
	 <li><a class="smoothscroll" href="#about">About Us.</a></li>
    <li><a class="smoothscroll" href="#portfolio">Features.</a></li>
    <li><a class="smoothscroll" href="#contact">Create Account.</a></li>
    <li><a …
Run Code Online (Sandbox Code Playgroud)

html javascript css jquery

3
推荐指数
1
解决办法
1374
查看次数

连接到大量文本突破新行的逐字字符串文字

如何将逐字字符串文字中的变量与大量文本分成新行连接起来?我正在使用stringbuilder来附加所有字符串变量但是

我打算做什么 -

StringBuilder sbuilder = new StringBuilder();
variable y = something
variable x = @"text"+ y + "
             other text other text";
variable z = @"blablabla";
variable z2 = @"some other text"

sbuilder.Append(x);
sbuilder.Append(z);
sbuilder.Append(z2);

string html = sbuilder.ToString();
Run Code Online (Sandbox Code Playgroud)

我尝试了什么 -

var variable = modelview.something; 
string form = @"a whole lotta text "+variable+ "even more text";
Run Code Online (Sandbox Code Playgroud)

我遇到了语法错误

Represents text as a series of Unicode characters.To browse the .NET framework source code for this type, see the Reference Source.
Newline …
Run Code Online (Sandbox Code Playgroud)

c# asp.net string-concatenation

-4
推荐指数
1
解决办法
492
查看次数