<!DOCTYPE html>
<html>
<body>
<select id="sample">
<option>Test 1</option>
<option>Test 2</option>
<option>Test 3</option>
<option>Test 4</option>
</select>
<button onclick="myTest()">Try it</button>
<p id="test"></p>
<script>
function myTest() {
var sampleValue = document.getElementById("sample").value;
document.getElementById("test").innerHTML = sampleValue;
}
</script>
</body>
</html>
2016年11月23日 星期三
JavaScript如何取得Select選項中的値
在變數sampleValue中取得Select目前選項的Value
2016年11月22日 星期二
JavaScript/Jquery簡單判斷undefined
var test = undefined;
if (typeof(test) == "undefined")
{
alert("undefined");
}
typeof 返回有六種可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"
2016年11月21日 星期一
ASP.NET 有用過的using整理(持續更新)
using System.Threading.Tasks;
using System.Globalization;
using System.Threading;
using System.Configuration;
using Newtonsoft.Json;
using System.Net.Http;
using System.Xml.Serialization;
using System.IO;
using System.Web;
using System.Web.Routing;
以下為MVC架構才能使用(或是加入參考)
using System.Web.Mvc;
using System.Web.Helpers;
以下需從NuGet安裝
using Microsoft.Azure.Devices.Common;
using Microsoft.AspNet.SignalR;
using log4net;
using System.Globalization;
using System.Threading;
using System.Configuration;
using Newtonsoft.Json;
using System.Net.Http;
using System.Xml.Serialization;
using System.IO;
using System.Web;
using System.Web.Routing;
以下為MVC架構才能使用(或是加入參考)
using System.Web.Mvc;
using System.Web.Helpers;
以下需從NuGet安裝
using Microsoft.Azure.Devices.Common;
using Microsoft.AspNet.SignalR;
using log4net;
2016年11月17日 星期四
ASP.net如何在.cs中讀取Web.config
- 在Web.config中放入需要讀取的值,例如123456。
- 在.cs中放入。
<appsettings>
<add key="testjsget" value="true"></add>
</appsettings>
private static bool testFlag = false;
testFlag = bool.Parse(ConfigurationManager.AppSettings["testjsget"])
2016年11月16日 星期三
ASP MVC結構下,如何在.js中讀取Web.config
- 在Web.config中放入需要讀取的值,例如123456。
- 在對應.js的.cshtml中放入。
- 最後是.js中讀取值123456,在這裡使用彈出視窗顯示。
<appsettings>
<add key="testjsget" value="123456"></add>
</appsettings>
var js =
{
get: '@System.Configuration.ConfigurationManager.AppSettings["testjsget"]'
};
alert(js.get);
訂閱:
文章 (Atom)